We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c154c6 commit 32d0592Copy full SHA for 32d0592
1 file changed
crates/bitcoind_rpc/tests/test_filter_iter.rs
@@ -176,7 +176,7 @@ fn test_reorg_handling() -> anyhow::Result<()> {
176
177
// Mine initial chain: 100:A, 101:B
178
let block_a_hash = env.mine_blocks(1, None)?[0];
179
- let block_b_hash = env.mine_blocks(1, None)?[0];
+ let _block_b_hash = env.mine_blocks(1, None)?[0];
180
181
// Create SPK to test with
182
let dummy_spk = ScriptBuf::new();
@@ -210,7 +210,7 @@ fn test_reorg_handling() -> anyhow::Result<()> {
210
211
// Mine new blocks
212
let block_a_prime = env.mine_blocks(1, None)?[0];
213
- let block_b_prime = env.mine_blocks(1, None)?[0];
+ let _block_b_prime = env.mine_blocks(1, None)?[0];
214
215
// Process new blocks - should detect reorg and match the transaction
216
match iter.next().transpose()? {
0 commit comments