Skip to content

Commit

Permalink
Remove DynamicOutputP2WPKH ref in logger
Browse files Browse the repository at this point in the history
  • Loading branch information
ariard committed Aug 3, 2021
1 parent 8a9b7e5 commit 6747827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/src/util/macro_logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl<'a> core::fmt::Display for DebugSpendable<'a> {
write!(f, "DelayedPaymentOutput {}:{} marked for spending", descriptor.outpoint.txid, descriptor.outpoint.index)?;
}
&SpendableOutputDescriptor::StaticPaymentOutput(ref descriptor) => {
write!(f, "DynamicOutputP2WPKH {}:{} marked for spending", descriptor.outpoint.txid, descriptor.outpoint.index)?;
write!(f, "StaticPaymentOutpput {}:{} marked for spending", descriptor.outpoint.txid, descriptor.outpoint.index)?;
}
}
Ok(())
Expand Down

0 comments on commit 6747827

Please sign in to comment.