We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustfmt
chain/transaction.rs
1 parent d4c6681 commit 1faaab6Copy full SHA for 1faaab6
lightning/src/chain/transaction.rs
@@ -1,5 +1,3 @@
1
-#![cfg_attr(rustfmt, rustfmt_skip)]
2
-
3
// This file is Copyright its original authors, visible in version control
4
// history.
5
//
@@ -63,10 +61,7 @@ impl OutPoint {
63
61
/// This is not exported to bindings users as the same type is used universally in the C bindings
64
62
/// for all outpoints
65
pub fn into_bitcoin_outpoint(self) -> BitcoinOutPoint {
66
- BitcoinOutPoint {
67
- txid: self.txid,
68
- vout: self.index as u32,
69
- }
+ BitcoinOutPoint { txid: self.txid, vout: self.index as u32 }
70
}
71
72
0 commit comments