Skip to content

Commit

Permalink
test(electrum): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
f3r10 committed Nov 14, 2024
1 parent 54d32d9 commit 5ed5266
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/electrum/tests/test_electrum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,9 @@ fn test_check_fee_calculation() -> anyhow::Result<()> {
let hash_block = env.mine_blocks(1, None)?.into_iter().nth(0);

// Look at the tx we just sent, it should have 1 input and 1 output
let tx = env.rpc_client().get_raw_transaction_info(&txid, hash_block.as_ref())?;
let tx = env
.rpc_client()
.get_raw_transaction_info(&txid, hash_block.as_ref())?;
assert_eq!(tx.vin.len(), 1);
assert_eq!(tx.vout.len(), 1);
let vin = &tx.vin[0];
Expand Down

0 comments on commit 5ed5266

Please sign in to comment.