test: fix populate_test_db conf calculation
populate_test_db would previously give back a transaction with N + 1 confirmations when you asked for N. This commit also fixes test_spend_coinbase, which would improperly ask for a transaction with 0 confirmations instead of 1.
This commit is contained in:
@@ -4723,7 +4723,7 @@ pub(crate) mod test {
|
||||
|
||||
crate::populate_test_db!(
|
||||
wallet.database.borrow_mut(),
|
||||
testutils! (@tx ( (@external descriptors, 0) => 25_000 ) (@confirmations 0)),
|
||||
testutils! (@tx ( (@external descriptors, 0) => 25_000 ) (@confirmations 1)),
|
||||
Some(confirmation_time),
|
||||
(@coinbase true)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user