Skip to content

Commit 5ed5266

Browse files
committed
test(electrum): formatting
1 parent 54d32d9 commit 5ed5266

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/electrum/tests/test_electrum.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,9 @@ fn test_check_fee_calculation() -> anyhow::Result<()> {
563563
let hash_block = env.mine_blocks(1, None)?.into_iter().nth(0);
564564

565565
// Look at the tx we just sent, it should have 1 input and 1 output
566-
let tx = env.rpc_client().get_raw_transaction_info(&txid, hash_block.as_ref())?;
566+
let tx = env
567+
.rpc_client()
568+
.get_raw_transaction_info(&txid, hash_block.as_ref())?;
567569
assert_eq!(tx.vin.len(), 1);
568570
assert_eq!(tx.vout.len(), 1);
569571
let vin = &tx.vin[0];

0 commit comments

Comments
 (0)