mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
lntest+itest: add new method AssertChannelInGraph
This commit replaces `AssertTopologyChannelOpen` with `AssertChannelInGraph`, which asserts a given channel edge is found. `AssertTopologyChannelOpen` only asserts a given edge has been received via the topology subscription, while we need to make sure the channel is in the graph before continuing our tests.
This commit is contained in:
parent
7dda2960a5
commit
653a8ac55e
@ -1435,8 +1435,8 @@ func createLegacyRevocationChannel(ht *lntest.HarnessTest,
|
|||||||
}
|
}
|
||||||
|
|
||||||
ht.MineBlocksAndAssertNumTxes(6, 1)
|
ht.MineBlocksAndAssertNumTxes(6, 1)
|
||||||
ht.AssertTopologyChannelOpen(from, chanPoint)
|
ht.AssertChannelInGraph(from, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(to, chanPoint)
|
ht.AssertChannelInGraph(to, chanPoint)
|
||||||
}
|
}
|
||||||
|
|
||||||
// chanRestoreViaRPC is a helper test method that returns a nodeRestorer
|
// chanRestoreViaRPC is a helper test method that returns a nodeRestorer
|
||||||
|
@ -127,8 +127,8 @@ func testUpdateChannelPolicy(ht *lntest.HarnessTest) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Make sure Alice and Carol have seen each other's channels.
|
// Make sure Alice and Carol have seen each other's channels.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint2)
|
ht.AssertChannelInGraph(alice, chanPoint2)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
|
|
||||||
// First we'll try to send a payment from Alice to Carol with an amount
|
// First we'll try to send a payment from Alice to Carol with an amount
|
||||||
// less than the min_htlc value required by Carol. This payment should
|
// less than the min_htlc value required by Carol. This payment should
|
||||||
@ -292,7 +292,7 @@ func testUpdateChannelPolicy(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Make sure Bob knows this channel.
|
// Make sure Bob knows this channel.
|
||||||
ht.AssertTopologyChannelOpen(bob, chanPoint3)
|
ht.AssertChannelInGraph(bob, chanPoint3)
|
||||||
|
|
||||||
// Make a global update, and check that both channels' new policies get
|
// Make a global update, and check that both channels' new policies get
|
||||||
// propagated.
|
// propagated.
|
||||||
@ -515,9 +515,9 @@ func testSendUpdateDisableChannel(ht *lntest.HarnessTest) {
|
|||||||
ht.RestartNodeWithExtraArgs(eve, nodeCfg)
|
ht.RestartNodeWithExtraArgs(eve, nodeCfg)
|
||||||
|
|
||||||
// Dave should know all the channels.
|
// Dave should know all the channels.
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPointAliceBob)
|
ht.AssertChannelInGraph(dave, chanPointAliceBob)
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPointAliceCarol)
|
ht.AssertChannelInGraph(dave, chanPointAliceCarol)
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPointEveCarol)
|
ht.AssertChannelInGraph(dave, chanPointEveCarol)
|
||||||
|
|
||||||
// We should expect to see a channel update with the default routing
|
// We should expect to see a channel update with the default routing
|
||||||
// policy, except that it should indicate the channel is disabled.
|
// policy, except that it should indicate the channel is disabled.
|
||||||
@ -701,7 +701,7 @@ func testUpdateChannelPolicyForPrivateChannel(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Carol should be aware of the channel between Alice and Bob.
|
// Carol should be aware of the channel between Alice and Bob.
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPointAliceBob)
|
ht.AssertChannelInGraph(carol, chanPointAliceBob)
|
||||||
|
|
||||||
// We should have the following topology now,
|
// We should have the following topology now,
|
||||||
// Alice <--public:100k--> Bob <--private:100k--> Carol
|
// Alice <--public:100k--> Bob <--private:100k--> Carol
|
||||||
|
@ -47,7 +47,7 @@ func coopCloseWithHTLCs(ht *lntest.HarnessTest) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// Wait for Bob to understand that the channel is ready to use.
|
// Wait for Bob to understand that the channel is ready to use.
|
||||||
ht.AssertTopologyChannelOpen(bob, chanPoint)
|
ht.AssertChannelInGraph(bob, chanPoint)
|
||||||
|
|
||||||
// Here we set things up so that Alice generates a HODL invoice so we
|
// Here we set things up so that Alice generates a HODL invoice so we
|
||||||
// can test whether the shutdown is deferred until the settlement of
|
// can test whether the shutdown is deferred until the settlement of
|
||||||
@ -141,7 +141,7 @@ func coopCloseWithHTLCsWithRestart(ht *lntest.HarnessTest) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// Wait for Bob to understand that the channel is ready to use.
|
// Wait for Bob to understand that the channel is ready to use.
|
||||||
ht.AssertTopologyChannelOpen(bob, chanPoint)
|
ht.AssertChannelInGraph(bob, chanPoint)
|
||||||
|
|
||||||
// Set up a HODL invoice so that we can be sure that an HTLC is pending
|
// Set up a HODL invoice so that we can be sure that an HTLC is pending
|
||||||
// on the channel at the time that shutdown is requested.
|
// on the channel at the time that shutdown is requested.
|
||||||
|
@ -58,7 +58,7 @@ func testForwardInterceptorDedupHtlc(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC := resp[0], resp[1]
|
cpAB, cpBC := resp[0], resp[1]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Connect the interceptor.
|
// Connect the interceptor.
|
||||||
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
@ -209,7 +209,7 @@ func testForwardInterceptorBasic(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC := resp[0], resp[1]
|
cpAB, cpBC := resp[0], resp[1]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Connect the interceptor.
|
// Connect the interceptor.
|
||||||
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
@ -370,7 +370,7 @@ func testForwardInterceptorModifiedHtlc(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC := resp[0], resp[1]
|
cpAB, cpBC := resp[0], resp[1]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Connect an interceptor to Bob's node.
|
// Connect an interceptor to Bob's node.
|
||||||
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
@ -478,7 +478,7 @@ func testForwardInterceptorWireRecords(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC, cpCD := resp[0], resp[1], resp[2]
|
cpAB, cpBC, cpCD := resp[0], resp[1], resp[2]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Connect an interceptor to Bob's node.
|
// Connect an interceptor to Bob's node.
|
||||||
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
@ -609,8 +609,8 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC, cpCD := resp[0], resp[1], resp[2]
|
cpAB, cpBC, cpCD := resp[0], resp[1], resp[2]
|
||||||
|
|
||||||
// Make sure Alice is aware of channels Bob=>Carol and Carol=>Dave.
|
// Make sure Alice is aware of channels Bob=>Carol and Carol=>Dave.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
ht.AssertTopologyChannelOpen(alice, cpCD)
|
ht.AssertChannelInGraph(alice, cpCD)
|
||||||
|
|
||||||
// Connect an interceptor to Bob's node.
|
// Connect an interceptor to Bob's node.
|
||||||
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
bobInterceptor, cancelBobInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
|
@ -927,8 +927,8 @@ func testChannelFundingPersistence(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Make sure Alice and Carol have seen the channel in their network
|
// Make sure Alice and Carol have seen the channel in their network
|
||||||
// topology.
|
// topology.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint)
|
ht.AssertChannelInGraph(alice, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
|
|
||||||
// Create an additional check for our channel assertion that will
|
// Create an additional check for our channel assertion that will
|
||||||
// check that our label is as expected.
|
// check that our label is as expected.
|
||||||
@ -1055,7 +1055,7 @@ func testBatchChanFunding(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Ensure that Alice can send funds to Eve via the zero-conf channel
|
// Ensure that Alice can send funds to Eve via the zero-conf channel
|
||||||
// before the batch transaction was mined.
|
// before the batch transaction was mined.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint4)
|
ht.AssertChannelInGraph(alice, chanPoint4)
|
||||||
eveInvoiceParams := &lnrpc.Invoice{
|
eveInvoiceParams := &lnrpc.Invoice{
|
||||||
Value: int64(10_000),
|
Value: int64(10_000),
|
||||||
Private: true,
|
Private: true,
|
||||||
@ -1068,9 +1068,9 @@ func testBatchChanFunding(ht *lntest.HarnessTest) {
|
|||||||
// Mine the batch transaction and check the network topology.
|
// Mine the batch transaction and check the network topology.
|
||||||
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
||||||
ht.AssertTxInBlock(block, *txHash)
|
ht.AssertTxInBlock(block, *txHash)
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint1)
|
ht.AssertChannelInGraph(alice, chanPoint1)
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint2)
|
ht.AssertChannelInGraph(alice, chanPoint2)
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint3)
|
ht.AssertChannelInGraph(alice, chanPoint3)
|
||||||
|
|
||||||
// Check if the change type from the batch_open_channel funding is P2TR.
|
// Check if the change type from the batch_open_channel funding is P2TR.
|
||||||
rawTx := ht.GetRawTransaction(*txHash)
|
rawTx := ht.GetRawTransaction(*txHash)
|
||||||
|
@ -51,7 +51,7 @@ func testHoldInvoicePersistence(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Wait for Carol to see the open channel Alice-Bob.
|
// Wait for Carol to see the open channel Alice-Bob.
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPointBob)
|
ht.AssertChannelInGraph(carol, chanPointBob)
|
||||||
|
|
||||||
// Create preimages for all payments we are going to initiate.
|
// Create preimages for all payments we are going to initiate.
|
||||||
var preimages []lntypes.Preimage
|
var preimages []lntypes.Preimage
|
||||||
|
@ -35,7 +35,7 @@ func testInvoiceHtlcModifierBasic(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC := resp[0], resp[1]
|
cpAB, cpBC := resp[0], resp[1]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Initiate Carol's invoice HTLC modifier.
|
// Initiate Carol's invoice HTLC modifier.
|
||||||
invoiceModifier, cancelModifier := carol.RPC.InvoiceHtlcModifier()
|
invoiceModifier, cancelModifier := carol.RPC.InvoiceHtlcModifier()
|
||||||
|
@ -172,10 +172,10 @@ func testSphinxReplayPersistence(ht *lntest.HarnessTest) {
|
|||||||
invoiceResp := dave.RPC.AddInvoice(invoice)
|
invoiceResp := dave.RPC.AddInvoice(invoice)
|
||||||
|
|
||||||
// Wait for all channels to be recognized and advertized.
|
// Wait for all channels to be recognized and advertized.
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPoint)
|
ht.AssertChannelInGraph(dave, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPointFC)
|
ht.AssertChannelInGraph(carol, chanPointFC)
|
||||||
ht.AssertTopologyChannelOpen(fred, chanPointFC)
|
ht.AssertChannelInGraph(fred, chanPointFC)
|
||||||
|
|
||||||
// With the invoice for Dave added, send a payment from Fred paying
|
// With the invoice for Dave added, send a payment from Fred paying
|
||||||
// to the above generated invoice.
|
// to the above generated invoice.
|
||||||
@ -417,7 +417,7 @@ func testMaxPendingChannels(ht *lntest.HarnessTest) {
|
|||||||
// Ensure that the funding transaction enters a block, and is
|
// Ensure that the funding transaction enters a block, and is
|
||||||
// properly advertised by Alice.
|
// properly advertised by Alice.
|
||||||
ht.AssertTxInBlock(block, fundingTxID)
|
ht.AssertTxInBlock(block, fundingTxID)
|
||||||
ht.AssertTopologyChannelOpen(alice, fundingChanPoint)
|
ht.AssertChannelInGraph(alice, fundingChanPoint)
|
||||||
|
|
||||||
// The channel should be listed in the peer information
|
// The channel should be listed in the peer information
|
||||||
// returned by both peers.
|
// returned by both peers.
|
||||||
|
@ -295,7 +295,7 @@ func (m *mppTestScenario) openChannels(r *mppOpenChannelRequest) {
|
|||||||
// Make sure every node has heard every channel.
|
// Make sure every node has heard every channel.
|
||||||
for _, hn := range m.nodes {
|
for _, hn := range m.nodes {
|
||||||
for _, cp := range m.channelPoints {
|
for _, cp := range m.channelPoints {
|
||||||
m.ht.AssertTopologyChannelOpen(hn, cp)
|
m.ht.AssertChannelInGraph(hn, cp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Each node should have exactly 6 edges.
|
// Each node should have exactly 6 edges.
|
||||||
|
@ -49,7 +49,7 @@ func testHtlcErrorPropagation(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Ensure that Alice has Carol in her routing table before proceeding.
|
// Ensure that Alice has Carol in her routing table before proceeding.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBob)
|
ht.AssertChannelInGraph(alice, chanPointBob)
|
||||||
|
|
||||||
cType := ht.GetChannelCommitType(alice, chanPointAlice)
|
cType := ht.GetChannelCommitType(alice, chanPointAlice)
|
||||||
commitFee := lntest.CalcStaticFee(cType, 0)
|
commitFee := lntest.CalcStaticFee(cType, 0)
|
||||||
|
@ -2295,8 +2295,8 @@ func createThreeHopNetwork(ht *lntest.HarnessTest,
|
|||||||
// We'll only do this though if it wasn't a private channel we opened
|
// We'll only do this though if it wasn't a private channel we opened
|
||||||
// earlier.
|
// earlier.
|
||||||
if !privateChan {
|
if !privateChan {
|
||||||
ht.AssertTopologyChannelOpen(alice, bobChanPoint)
|
ht.AssertChannelInGraph(alice, bobChanPoint)
|
||||||
ht.AssertTopologyChannelOpen(carol, aliceChanPoint)
|
ht.AssertChannelInGraph(carol, aliceChanPoint)
|
||||||
} else {
|
} else {
|
||||||
// Otherwise, we want to wait for all the channels to be shown
|
// Otherwise, we want to wait for all the channels to be shown
|
||||||
// as active before we proceed.
|
// as active before we proceed.
|
||||||
|
@ -80,8 +80,8 @@ func testOpenChannelAfterReorg(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Wait for Alice and Bob to recognize and advertise the new channel
|
// Wait for Alice and Bob to recognize and advertise the new channel
|
||||||
// generated above.
|
// generated above.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPoint)
|
ht.AssertChannelInGraph(alice, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(bob, chanPoint)
|
ht.AssertChannelInGraph(bob, chanPoint)
|
||||||
|
|
||||||
// Alice should now have 1 edge in her graph.
|
// Alice should now have 1 edge in her graph.
|
||||||
ht.AssertNumActiveEdges(alice, 1, true)
|
ht.AssertNumActiveEdges(alice, 1, true)
|
||||||
|
@ -1113,7 +1113,7 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
|
|||||||
cpAB, cpBC := resp[0], resp[1]
|
cpAB, cpBC := resp[0], resp[1]
|
||||||
|
|
||||||
// Make sure Alice is aware of channel Bob=>Carol.
|
// Make sure Alice is aware of channel Bob=>Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, cpBC)
|
ht.AssertChannelInGraph(alice, cpBC)
|
||||||
|
|
||||||
// Connect the interceptor.
|
// Connect the interceptor.
|
||||||
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
|
||||||
|
@ -307,8 +307,8 @@ func runPsbtChanFunding(ht *lntest.HarnessTest, carol, dave *node.HarnessNode,
|
|||||||
txHash := finalTx.TxHash()
|
txHash := finalTx.TxHash()
|
||||||
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
||||||
ht.AssertTxInBlock(block, txHash)
|
ht.AssertTxInBlock(block, txHash)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint2)
|
ht.AssertChannelInGraph(carol, chanPoint2)
|
||||||
|
|
||||||
// With the channel open, ensure that it is counted towards Carol's
|
// With the channel open, ensure that it is counted towards Carol's
|
||||||
// total channel balance.
|
// total channel balance.
|
||||||
@ -482,8 +482,8 @@ func runPsbtChanFundingExternal(ht *lntest.HarnessTest, carol,
|
|||||||
// for the new channel to be propagated through the network.
|
// for the new channel to be propagated through the network.
|
||||||
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
||||||
ht.AssertTxInBlock(block, txHash)
|
ht.AssertTxInBlock(block, txHash)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint2)
|
ht.AssertChannelInGraph(carol, chanPoint2)
|
||||||
|
|
||||||
// With the channel open, ensure that it is counted towards Carol's
|
// With the channel open, ensure that it is counted towards Carol's
|
||||||
// total channel balance.
|
// total channel balance.
|
||||||
@ -639,7 +639,7 @@ func runPsbtChanFundingSingleStep(ht *lntest.HarnessTest, carol,
|
|||||||
txHash := finalTx.TxHash()
|
txHash := finalTx.TxHash()
|
||||||
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
block := ht.MineBlocksAndAssertNumTxes(6, 1)[0]
|
||||||
ht.AssertTxInBlock(block, txHash)
|
ht.AssertTxInBlock(block, txHash)
|
||||||
ht.AssertTopologyChannelOpen(carol, chanPoint)
|
ht.AssertChannelInGraph(carol, chanPoint)
|
||||||
|
|
||||||
// Next, to make sure the channel functions as normal, we'll make some
|
// Next, to make sure the channel functions as normal, we'll make some
|
||||||
// payments within the channel.
|
// payments within the channel.
|
||||||
|
@ -37,7 +37,7 @@ func testResHandoff(ht *lntest.HarnessTest) {
|
|||||||
chanPointCarol := ht.OpenChannel(bob, carol, params)
|
chanPointCarol := ht.OpenChannel(bob, carol, params)
|
||||||
|
|
||||||
// Wait for Alice to see the channel edge in the graph.
|
// Wait for Alice to see the channel edge in the graph.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointCarol)
|
ht.AssertChannelInGraph(alice, chanPointCarol)
|
||||||
|
|
||||||
// We'll create an invoice for Carol that Alice will attempt to pay.
|
// We'll create an invoice for Carol that Alice will attempt to pay.
|
||||||
// Since Carol is in hodl.commit mode, she won't send back any commit
|
// Since Carol is in hodl.commit mode, she won't send back any commit
|
||||||
|
@ -276,7 +276,7 @@ func revokedCloseRetributionZeroValueRemoteOutputCase(ht *lntest.HarnessTest,
|
|||||||
ht.EnsureConnected(dave, carol)
|
ht.EnsureConnected(dave, carol)
|
||||||
|
|
||||||
// Once connected, give Dave some time to enable the channel again.
|
// Once connected, give Dave some time to enable the channel again.
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPoint)
|
ht.AssertChannelInGraph(dave, chanPoint)
|
||||||
|
|
||||||
// Finally, send payments from Dave to Carol, consuming Carol's
|
// Finally, send payments from Dave to Carol, consuming Carol's
|
||||||
// remaining payment hashes.
|
// remaining payment hashes.
|
||||||
@ -502,7 +502,7 @@ func revokedCloseRetributionRemoteHodlCase(ht *lntest.HarnessTest,
|
|||||||
ht.EnsureConnected(dave, carol)
|
ht.EnsureConnected(dave, carol)
|
||||||
|
|
||||||
// Once connected, give Dave some time to enable the channel again.
|
// Once connected, give Dave some time to enable the channel again.
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPoint)
|
ht.AssertChannelInGraph(dave, chanPoint)
|
||||||
|
|
||||||
// Finally, send payments from Dave to Carol, consuming Carol's
|
// Finally, send payments from Dave to Carol, consuming Carol's
|
||||||
// remaining payment hashes.
|
// remaining payment hashes.
|
||||||
|
@ -63,7 +63,7 @@ func testQueryBlindedRoutes(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Wait for Alice to see Bob/Carol's channel because she'll need it for
|
// Wait for Alice to see Bob/Carol's channel because she'll need it for
|
||||||
// pathfinding.
|
// pathfinding.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBobCarol)
|
ht.AssertChannelInGraph(alice, chanPointBobCarol)
|
||||||
|
|
||||||
// Lookup full channel info so that we have channel ids for our route.
|
// Lookup full channel info so that we have channel ids for our route.
|
||||||
aliceBobChan := ht.GetChannelByChanPoint(alice, chanPointAliceBob)
|
aliceBobChan := ht.GetChannelByChanPoint(alice, chanPointAliceBob)
|
||||||
@ -593,7 +593,7 @@ func setupFourHopNetwork(ht *lntest.HarnessTest,
|
|||||||
nodes := []*node.HarnessNode{ht.Alice, ht.Bob, carol, dave}
|
nodes := []*node.HarnessNode{ht.Alice, ht.Bob, carol, dave}
|
||||||
for _, chanPoint := range networkChans {
|
for _, chanPoint := range networkChans {
|
||||||
for _, node := range nodes {
|
for _, node := range nodes {
|
||||||
ht.AssertTopologyChannelOpen(node, chanPoint)
|
ht.AssertChannelInGraph(node, chanPoint)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -981,7 +981,7 @@ func testMPPToSingleBlindedPath(ht *lntest.HarnessTest) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
numPublic++
|
numPublic++
|
||||||
ht.AssertTopologyChannelOpen(hn, cp)
|
ht.AssertChannelInGraph(hn, cp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Each node should have exactly numPublic edges.
|
// Each node should have exactly numPublic edges.
|
||||||
@ -1152,7 +1152,7 @@ func testBlindedRouteDummyHops(ht *lntest.HarnessTest) {
|
|||||||
// Make sure every node has heard about every channel.
|
// Make sure every node has heard about every channel.
|
||||||
for _, hn := range nodes {
|
for _, hn := range nodes {
|
||||||
for _, cp := range channelPoints {
|
for _, cp := range channelPoints {
|
||||||
ht.AssertTopologyChannelOpen(hn, cp)
|
ht.AssertChannelInGraph(hn, cp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Each node should have exactly 5 edges.
|
// Each node should have exactly 5 edges.
|
||||||
@ -1321,7 +1321,7 @@ func testMPPToMultipleBlindedPaths(ht *lntest.HarnessTest) {
|
|||||||
// Make sure every node has heard every channel.
|
// Make sure every node has heard every channel.
|
||||||
for _, hn := range nodes {
|
for _, hn := range nodes {
|
||||||
for _, cp := range channelPoints {
|
for _, cp := range channelPoints {
|
||||||
ht.AssertTopologyChannelOpen(hn, cp)
|
ht.AssertChannelInGraph(hn, cp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Each node should have exactly 5 edges.
|
// Each node should have exactly 5 edges.
|
||||||
|
@ -344,7 +344,7 @@ func runMultiHopSendToRoute(ht *lntest.HarnessTest, useGraphCache bool) {
|
|||||||
defer ht.CloseChannel(carol, chanPointBob)
|
defer ht.CloseChannel(carol, chanPointBob)
|
||||||
|
|
||||||
// Make sure Alice knows the channel between Bob and Carol.
|
// Make sure Alice knows the channel between Bob and Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBob)
|
ht.AssertChannelInGraph(alice, chanPointBob)
|
||||||
|
|
||||||
// Create 5 invoices for Carol, which expect a payment from Alice for
|
// Create 5 invoices for Carol, which expect a payment from Alice for
|
||||||
// 1k satoshis with a different preimage each time.
|
// 1k satoshis with a different preimage each time.
|
||||||
@ -965,7 +965,7 @@ func testMultiHopOverPrivateChannels(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Alice should know the new channel from Bob.
|
// Alice should know the new channel from Bob.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBob)
|
ht.AssertChannelInGraph(alice, chanPointBob)
|
||||||
|
|
||||||
// Next, we'll create Dave's node and open a private channel between
|
// Next, we'll create Dave's node and open a private channel between
|
||||||
// him and Carol with Carol being the funder.
|
// him and Carol with Carol being the funder.
|
||||||
@ -981,7 +981,7 @@ func testMultiHopOverPrivateChannels(ht *lntest.HarnessTest) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Dave should know the channel[Bob<->Carol] from Carol.
|
// Dave should know the channel[Bob<->Carol] from Carol.
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPointBob)
|
ht.AssertChannelInGraph(dave, chanPointBob)
|
||||||
|
|
||||||
// Now that all the channels are set up according to the topology from
|
// Now that all the channels are set up according to the topology from
|
||||||
// above, we can proceed to test payments. We'll create an invoice for
|
// above, we can proceed to test payments. We'll create an invoice for
|
||||||
@ -1077,8 +1077,8 @@ func testQueryRoutes(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Before we continue, give Alice some time to catch up with the newly
|
// Before we continue, give Alice some time to catch up with the newly
|
||||||
// opened channels.
|
// opened channels.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBob)
|
ht.AssertChannelInGraph(alice, chanPointBob)
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointCarol)
|
ht.AssertChannelInGraph(alice, chanPointCarol)
|
||||||
|
|
||||||
// Query for routes to pay from Alice to Dave.
|
// Query for routes to pay from Alice to Dave.
|
||||||
const paymentAmt = 1000
|
const paymentAmt = 1000
|
||||||
@ -1389,7 +1389,7 @@ func testRouteFeeCutoff(ht *lntest.HarnessTest) {
|
|||||||
}
|
}
|
||||||
for _, chanPoint := range networkChans {
|
for _, chanPoint := range networkChans {
|
||||||
for _, node := range nodes {
|
for _, node := range nodes {
|
||||||
ht.AssertTopologyChannelOpen(node, chanPoint)
|
ht.AssertChannelInGraph(node, chanPoint)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -415,7 +415,7 @@ func setupScenarioFourNodes(ht *lntest.HarnessTest) *scenarioFourNodes {
|
|||||||
nodes := []*node.HarnessNode{alice, bob, carol, dave}
|
nodes := []*node.HarnessNode{alice, bob, carol, dave}
|
||||||
for _, chanPoint := range resp {
|
for _, chanPoint := range resp {
|
||||||
for _, node := range nodes {
|
for _, node := range nodes {
|
||||||
ht.AssertTopologyChannelOpen(node, chanPoint)
|
ht.AssertChannelInGraph(node, chanPoint)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,8 +413,8 @@ func fundChanAndCloseFromImportedAccount(ht *lntest.HarnessTest, srcNode,
|
|||||||
},
|
},
|
||||||
OutputIndex: upd.ChanPending.OutputIndex,
|
OutputIndex: upd.ChanPending.OutputIndex,
|
||||||
}
|
}
|
||||||
ht.AssertTopologyChannelOpen(srcNode, chanPoint)
|
ht.AssertChannelInGraph(srcNode, chanPoint)
|
||||||
ht.AssertTopologyChannelOpen(destNode, chanPoint)
|
ht.AssertChannelInGraph(destNode, chanPoint)
|
||||||
|
|
||||||
// Send a test payment to ensure the channel is operating as normal.
|
// Send a test payment to ensure the channel is operating as normal.
|
||||||
const invoiceAmt = 100000
|
const invoiceAmt = 100000
|
||||||
|
@ -450,7 +450,7 @@ func testRevokedCloseRetributionAltruistWatchtowerCase(ht *lntest.HarnessTest,
|
|||||||
ht.EnsureConnected(dave, carol)
|
ht.EnsureConnected(dave, carol)
|
||||||
|
|
||||||
// Once connected, give Dave some time to enable the channel again.
|
// Once connected, give Dave some time to enable the channel again.
|
||||||
ht.AssertTopologyChannelOpen(dave, chanPoint)
|
ht.AssertChannelInGraph(dave, chanPoint)
|
||||||
|
|
||||||
// Finally, send payments from Dave to Carol, consuming Carol's
|
// Finally, send payments from Dave to Carol, consuming Carol's
|
||||||
// remaining payment hashes.
|
// remaining payment hashes.
|
||||||
|
@ -49,7 +49,7 @@ func testWipeForwardingPackages(ht *lntest.HarnessTest) {
|
|||||||
|
|
||||||
// Before we continue, make sure Alice has seen the channel between Bob
|
// Before we continue, make sure Alice has seen the channel between Bob
|
||||||
// and Carol.
|
// and Carol.
|
||||||
ht.AssertTopologyChannelOpen(alice, chanPointBC)
|
ht.AssertChannelInGraph(alice, chanPointBC)
|
||||||
|
|
||||||
// Alice sends several payments to Carol through Bob, which triggers
|
// Alice sends several payments to Carol through Bob, which triggers
|
||||||
// Bob to create forwarding packages.
|
// Bob to create forwarding packages.
|
||||||
|
@ -75,8 +75,8 @@ func testZeroConfChannelOpen(ht *lntest.HarnessTest) {
|
|||||||
// having to mine any blocks.
|
// having to mine any blocks.
|
||||||
fundingPoint2 := ht.WaitForChannelOpenEvent(stream)
|
fundingPoint2 := ht.WaitForChannelOpenEvent(stream)
|
||||||
|
|
||||||
ht.AssertTopologyChannelOpen(carol, fundingPoint2)
|
ht.AssertChannelInGraph(carol, fundingPoint2)
|
||||||
ht.AssertTopologyChannelOpen(dave, fundingPoint2)
|
ht.AssertChannelInGraph(dave, fundingPoint2)
|
||||||
|
|
||||||
// Attempt to send a 10K satoshi payment from Carol to Dave.
|
// Attempt to send a 10K satoshi payment from Carol to Dave.
|
||||||
daveInvoiceParams := &lnrpc.Invoice{
|
daveInvoiceParams := &lnrpc.Invoice{
|
||||||
@ -144,8 +144,8 @@ func testZeroConfChannelOpen(ht *lntest.HarnessTest) {
|
|||||||
// Wait to receive the OpenStatusUpdate_ChanOpen update.
|
// Wait to receive the OpenStatusUpdate_ChanOpen update.
|
||||||
fundingPoint3 := ht.WaitForChannelOpenEvent(stream)
|
fundingPoint3 := ht.WaitForChannelOpenEvent(stream)
|
||||||
|
|
||||||
ht.AssertTopologyChannelOpen(eve, fundingPoint3)
|
ht.AssertChannelInGraph(eve, fundingPoint3)
|
||||||
ht.AssertTopologyChannelOpen(carol, fundingPoint3)
|
ht.AssertChannelInGraph(carol, fundingPoint3)
|
||||||
|
|
||||||
// Attempt to send a 20K satoshi payment from Eve to Dave.
|
// Attempt to send a 20K satoshi payment from Eve to Dave.
|
||||||
daveInvoiceParams.Value = int64(20_000)
|
daveInvoiceParams.Value = int64(20_000)
|
||||||
@ -182,7 +182,7 @@ func testZeroConfChannelOpen(ht *lntest.HarnessTest) {
|
|||||||
require.Len(ht, payReq.RouteHints, 0)
|
require.Len(ht, payReq.RouteHints, 0)
|
||||||
|
|
||||||
// Make sure Dave is aware of this channel and send the payment.
|
// Make sure Dave is aware of this channel and send the payment.
|
||||||
ht.AssertTopologyChannelOpen(dave, fundingPoint3)
|
ht.AssertChannelInGraph(dave, fundingPoint3)
|
||||||
ht.CompletePaymentRequests(
|
ht.CompletePaymentRequests(
|
||||||
dave, []string{eveInvoiceResp.PaymentRequest},
|
dave, []string{eveInvoiceResp.PaymentRequest},
|
||||||
)
|
)
|
||||||
@ -269,7 +269,7 @@ func optionScidAliasScenario(ht *lntest.HarnessTest, chantype, private bool) {
|
|||||||
|
|
||||||
// Make sure Bob knows this channel if it's public.
|
// Make sure Bob knows this channel if it's public.
|
||||||
if !private {
|
if !private {
|
||||||
ht.AssertTopologyChannelOpen(bob, fundingPoint)
|
ht.AssertChannelInGraph(bob, fundingPoint)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Assert that a payment from Carol to Dave works as expected.
|
// Assert that a payment from Carol to Dave works as expected.
|
||||||
@ -291,7 +291,7 @@ func optionScidAliasScenario(ht *lntest.HarnessTest, chantype, private bool) {
|
|||||||
fundingPoint2 := ht.OpenChannel(bob, carol, p)
|
fundingPoint2 := ht.OpenChannel(bob, carol, p)
|
||||||
|
|
||||||
// Wait until Dave receives the Bob<->Carol channel.
|
// Wait until Dave receives the Bob<->Carol channel.
|
||||||
ht.AssertTopologyChannelOpen(dave, fundingPoint2)
|
ht.AssertChannelInGraph(dave, fundingPoint2)
|
||||||
|
|
||||||
daveInvoiceResp2 := dave.RPC.AddInvoice(daveInvoiceParams)
|
daveInvoiceResp2 := dave.RPC.AddInvoice(daveInvoiceParams)
|
||||||
decodedReq := dave.RPC.DecodePayReq(daveInvoiceResp2.PaymentRequest)
|
decodedReq := dave.RPC.DecodePayReq(daveInvoiceResp2.PaymentRequest)
|
||||||
@ -490,7 +490,7 @@ func testPrivateUpdateAlias(ht *lntest.HarnessTest,
|
|||||||
fundingPoint := ht.OpenChannel(eve, carol, p)
|
fundingPoint := ht.OpenChannel(eve, carol, p)
|
||||||
|
|
||||||
// Make sure Dave has seen this public channel.
|
// Make sure Dave has seen this public channel.
|
||||||
ht.AssertTopologyChannelOpen(dave, fundingPoint)
|
ht.AssertChannelInGraph(dave, fundingPoint)
|
||||||
|
|
||||||
// Setup a ChannelAcceptor for Dave.
|
// Setup a ChannelAcceptor for Dave.
|
||||||
acceptStream, cancel := dave.RPC.ChannelAcceptor()
|
acceptStream, cancel := dave.RPC.ChannelAcceptor()
|
||||||
@ -792,7 +792,7 @@ func testOptionScidUpgrade(ht *lntest.HarnessTest) {
|
|||||||
fundingPoint2 := ht.OpenChannel(bob, carol, p)
|
fundingPoint2 := ht.OpenChannel(bob, carol, p)
|
||||||
|
|
||||||
// Make sure Dave knows this channel.
|
// Make sure Dave knows this channel.
|
||||||
ht.AssertTopologyChannelOpen(dave, fundingPoint2)
|
ht.AssertChannelInGraph(dave, fundingPoint2)
|
||||||
|
|
||||||
// Carol will now set the option-scid-alias feature bit and restart.
|
// Carol will now set the option-scid-alias feature bit and restart.
|
||||||
carolArgs = append(carolArgs, "--protocol.option-scid-alias")
|
carolArgs = append(carolArgs, "--protocol.option-scid-alias")
|
||||||
|
@ -1223,8 +1223,8 @@ func (h *HarnessTest) openChannel(alice, bob *node.HarnessNode,
|
|||||||
|
|
||||||
// Check that both alice and bob have seen the channel from their
|
// Check that both alice and bob have seen the channel from their
|
||||||
// network topology.
|
// network topology.
|
||||||
h.AssertTopologyChannelOpen(alice, fundingChanPoint)
|
h.AssertChannelInGraph(alice, fundingChanPoint)
|
||||||
h.AssertTopologyChannelOpen(bob, fundingChanPoint)
|
h.AssertChannelInGraph(bob, fundingChanPoint)
|
||||||
|
|
||||||
// Check that the channel can be seen in their ListChannels.
|
// Check that the channel can be seen in their ListChannels.
|
||||||
h.AssertChannelExists(alice, fundingChanPoint)
|
h.AssertChannelExists(alice, fundingChanPoint)
|
||||||
@ -1245,8 +1245,8 @@ func (h *HarnessTest) openChannelZeroConf(alice, bob *node.HarnessNode,
|
|||||||
|
|
||||||
// Check that both alice and bob have seen the channel from their
|
// Check that both alice and bob have seen the channel from their
|
||||||
// network topology.
|
// network topology.
|
||||||
h.AssertTopologyChannelOpen(alice, fundingChanPoint)
|
h.AssertChannelInGraph(alice, fundingChanPoint)
|
||||||
h.AssertTopologyChannelOpen(bob, fundingChanPoint)
|
h.AssertChannelInGraph(bob, fundingChanPoint)
|
||||||
|
|
||||||
// Finally, check that the channel can be seen in their ListChannels.
|
// Finally, check that the channel can be seen in their ListChannels.
|
||||||
h.AssertChannelExists(alice, fundingChanPoint)
|
h.AssertChannelExists(alice, fundingChanPoint)
|
||||||
@ -1830,8 +1830,8 @@ func (h *HarnessTest) OpenMultiChannelsAsync(
|
|||||||
if !req.Param.Private {
|
if !req.Param.Private {
|
||||||
// Check that both alice and bob have seen the channel
|
// Check that both alice and bob have seen the channel
|
||||||
// from their channel watch request.
|
// from their channel watch request.
|
||||||
h.AssertTopologyChannelOpen(req.Local, cp)
|
h.AssertChannelInGraph(req.Local, cp)
|
||||||
h.AssertTopologyChannelOpen(req.Remote, cp)
|
h.AssertChannelInGraph(req.Remote, cp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Finally, check that the channel can be seen in their
|
// Finally, check that the channel can be seen in their
|
||||||
@ -2327,7 +2327,7 @@ func (h *HarnessTest) openChannelsForNodes(nodes []*node.HarnessNode,
|
|||||||
if !p.Private {
|
if !p.Private {
|
||||||
for _, node := range nodes {
|
for _, node := range nodes {
|
||||||
for _, chanPoint := range resp {
|
for _, chanPoint := range resp {
|
||||||
h.AssertTopologyChannelOpen(node, chanPoint)
|
h.AssertChannelInGraph(node, chanPoint)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -403,15 +403,6 @@ func (h HarnessTest) WaitForChannelOpenEvent(
|
|||||||
return resp.ChanOpen.ChannelPoint
|
return resp.ChanOpen.ChannelPoint
|
||||||
}
|
}
|
||||||
|
|
||||||
// AssertTopologyChannelOpen asserts that a given channel outpoint is seen by
|
|
||||||
// the passed node's network topology.
|
|
||||||
func (h *HarnessTest) AssertTopologyChannelOpen(hn *node.HarnessNode,
|
|
||||||
chanPoint *lnrpc.ChannelPoint) {
|
|
||||||
|
|
||||||
err := hn.Watcher.WaitForChannelOpen(chanPoint)
|
|
||||||
require.NoErrorf(h, err, "%s didn't report channel", hn.Name())
|
|
||||||
}
|
|
||||||
|
|
||||||
// AssertChannelExists asserts that an active channel identified by the
|
// AssertChannelExists asserts that an active channel identified by the
|
||||||
// specified channel point exists from the point-of-view of the node.
|
// specified channel point exists from the point-of-view of the node.
|
||||||
func (h *HarnessTest) AssertChannelExists(hn *node.HarnessNode,
|
func (h *HarnessTest) AssertChannelExists(hn *node.HarnessNode,
|
||||||
@ -506,7 +497,8 @@ func (h *HarnessTest) findChannel(hn *node.HarnessNode,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, fmt.Errorf("channel not found using %s", chanPoint)
|
return nil, fmt.Errorf("%s: channel not found using %s", hn.Name(),
|
||||||
|
fp.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReceiveCloseChannelUpdate waits until a message or an error is received on
|
// ReceiveCloseChannelUpdate waits until a message or an error is received on
|
||||||
@ -1945,6 +1937,37 @@ func (h *HarnessTest) AssertNotInGraph(hn *node.HarnessNode, chanID uint64) {
|
|||||||
"found in graph")
|
"found in graph")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AssertChannelInGraph asserts that a given channel is found in the graph.
|
||||||
|
func (h *HarnessTest) AssertChannelInGraph(hn *node.HarnessNode,
|
||||||
|
chanPoint *lnrpc.ChannelPoint) *lnrpc.ChannelEdge {
|
||||||
|
|
||||||
|
ctxt, cancel := context.WithCancel(h.runCtx)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
var edge *lnrpc.ChannelEdge
|
||||||
|
|
||||||
|
op := h.OutPointFromChannelPoint(chanPoint)
|
||||||
|
err := wait.NoError(func() error {
|
||||||
|
resp, err := hn.RPC.LN.GetChanInfo(
|
||||||
|
ctxt, &lnrpc.ChanInfoRequest{
|
||||||
|
ChanPoint: op.String(),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("channel %s not found in graph: %w",
|
||||||
|
op, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
edge = resp
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}, DefaultTimeout)
|
||||||
|
require.NoError(h, err, "%s: timeout finding channel in graph",
|
||||||
|
hn.Name())
|
||||||
|
|
||||||
|
return edge
|
||||||
|
}
|
||||||
|
|
||||||
// AssertTxAtHeight gets all of the transactions that a node's wallet has a
|
// AssertTxAtHeight gets all of the transactions that a node's wallet has a
|
||||||
// record of at the target height, and finds and returns the tx with the target
|
// record of at the target height, and finds and returns the tx with the target
|
||||||
// txid, failing if it is not found.
|
// txid, failing if it is not found.
|
||||||
|
Loading…
Reference in New Issue
Block a user