Skip to content

Commit 5ba1c45

Browse files
committed
f Move block_hash down one line
1 parent c7316c3 commit 5ba1c45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: lightning-transaction-sync/tests/integration_tests.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,8 @@ fn test_electrum_syncs() {
471471
let prev_tx = bitcoind.client.get_transaction(&prev_outpoint.txid, None).unwrap().transaction()
472472
.unwrap();
473473
let prev_script_pubkey = prev_tx.output[prev_outpoint.vout as usize].script_pubkey.clone();
474-
let output = WatchedOutput { block_hash: Some(block_hash),
474+
let output = WatchedOutput {
475+
block_hash: Some(block_hash),
475476
outpoint: OutPoint { txid: prev_outpoint.txid, index: prev_outpoint.vout as u16 },
476477
script_pubkey: prev_script_pubkey
477478
};

0 commit comments

Comments
 (0)