Skip to content

Commit 32d0592

Browse files
committed
fix clippy warnings (unused variables)
1 parent 5c154c6 commit 32d0592

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/bitcoind_rpc/tests/test_filter_iter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fn test_reorg_handling() -> anyhow::Result<()> {
176176

177177
// Mine initial chain: 100:A, 101:B
178178
let block_a_hash = env.mine_blocks(1, None)?[0];
179-
let block_b_hash = env.mine_blocks(1, None)?[0];
179+
let _block_b_hash = env.mine_blocks(1, None)?[0];
180180

181181
// Create SPK to test with
182182
let dummy_spk = ScriptBuf::new();
@@ -210,7 +210,7 @@ fn test_reorg_handling() -> anyhow::Result<()> {
210210

211211
// Mine new blocks
212212
let block_a_prime = env.mine_blocks(1, None)?[0];
213-
let block_b_prime = env.mine_blocks(1, None)?[0];
213+
let _block_b_prime = env.mine_blocks(1, None)?[0];
214214

215215
// Process new blocks - should detect reorg and match the transaction
216216
match iter.next().transpose()? {

0 commit comments

Comments
 (0)