Skip to content

Commit 1faaab6

Browse files
committed
Run rustfmt on chain/transaction.rs
1 parent d4c6681 commit 1faaab6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lightning/src/chain/transaction.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt_skip)]
2-
31
// This file is Copyright its original authors, visible in version control
42
// history.
53
//
@@ -63,10 +61,7 @@ impl OutPoint {
6361
/// This is not exported to bindings users as the same type is used universally in the C bindings
6462
/// for all outpoints
6563
pub fn into_bitcoin_outpoint(self) -> BitcoinOutPoint {
66-
BitcoinOutPoint {
67-
txid: self.txid,
68-
vout: self.index as u32,
69-
}
64+
BitcoinOutPoint { txid: self.txid, vout: self.index as u32 }
7065
}
7166
}
7267

0 commit comments

Comments
 (0)