Skip to content

Commit b42f594

Browse files
committed
f fix fuzzers
1 parent 4e52123 commit b42f594

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/src/chanmon_consistency.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
397397
value: *channel_value_satoshis, script_pubkey: output_script.clone(),
398398
}]};
399399
funding_output = OutPoint { txid: tx.txid(), index: 0 };
400-
$source.funding_transaction_generated(&temporary_channel_id, tx.clone(), 0).unwrap();
400+
$source.funding_transaction_generated(&temporary_channel_id, tx.clone()).unwrap();
401401
channel_txn.push(tx);
402402
} else { panic!("Wrong event type"); }
403403
}

fuzz/src/full_stack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ pub fn do_test(data: &[u8], logger: &Arc<dyn Logger>) {
516516
continue 'outer_loop;
517517
}
518518
};
519-
channelmanager.funding_transaction_generated(&funding_generation.0, tx.clone(), 0).unwrap();
519+
channelmanager.funding_transaction_generated(&funding_generation.0, tx.clone()).unwrap();
520520
pending_funding_signatures.insert(funding_output, tx);
521521
}
522522
},

0 commit comments

Comments
 (0)