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.
1 parent 54d32d9 commit 5ed5266Copy full SHA for 5ed5266
crates/electrum/tests/test_electrum.rs
@@ -563,7 +563,9 @@ fn test_check_fee_calculation() -> anyhow::Result<()> {
563
let hash_block = env.mine_blocks(1, None)?.into_iter().nth(0);
564
565
// 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())?;
+ let tx = env
567
+ .rpc_client()
568
+ .get_raw_transaction_info(&txid, hash_block.as_ref())?;
569
assert_eq!(tx.vin.len(), 1);
570
assert_eq!(tx.vout.len(), 1);
571
let vin = &tx.vin[0];
0 commit comments