lntest+itest: update block height in MineBlockWithTx

Make sure we update the harness's current height and assert nodes have
been synced. Also fixes some typo found.
This commit is contained in:
yyforyongyu
2025-03-19 17:24:20 +08:00
parent 883381d266
commit 64f7a7f3d0
3 changed files with 12 additions and 4 deletions

View File

@@ -2570,7 +2570,7 @@ func runLocalPreimageClaimLeased(ht *lntest.HarnessTest,
// We'll now mine enough blocks so Carol decides that she needs to go
// on-chain to claim the HTLC as Bob has been inactive.
numBlocks := padCLTV(
invoiceExpiry - ht.CurrentHeight() - incomingBroadcastDelta - 1,
invoiceExpiry - ht.CurrentHeight() - incomingBroadcastDelta,
)
ht.MineBlocks(int(numBlocks))

View File

@@ -1957,7 +1957,7 @@ func runBumpFee(ht *lntest.HarnessTest, alice *node.HarnessNode) {
// initial broadcast always succeeds.
assertFeeRateGreater(testFeeRate)
// Clean up the mempol.
// Clean up the mempool.
ht.MineBlocksAndAssertNumTxes(1, 2)
}
@@ -2373,6 +2373,6 @@ func testFeeReplacement(ht *lntest.HarnessTest) {
uint64(feeRate), 0.02, "want %d, got %d in tx=%v",
currentFeeRate, feeRate, outgoingSweep2.TxHash())
// Finally, clean the mempol.
// Finally, clean the mempool.
ht.MineBlocksAndAssertNumTxes(1, 1)
}

View File

@@ -247,7 +247,15 @@ func (h *HarnessTest) GetBestBlock() (*chainhash.Hash, int32) {
// MineBlockWithTx mines a single block to include the specifies tx only.
func (h *HarnessTest) MineBlockWithTx(tx *wire.MsgTx) *wire.MsgBlock {
return h.miner.MineBlockWithTx(tx)
// Update the harness's current height.
defer h.updateCurrentHeight()
block := h.miner.MineBlockWithTx(tx)
// Finally, make sure all the active nodes are synced.
h.AssertActiveNodesSyncedTo(block.BlockHash())
return block
}
// ConnectToMiner connects the miner to a temp miner.