From e6c47294fb770157d4650cff8040ddb4dd048b19 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 4 Nov 2020 11:03:36 +0100 Subject: [PATCH] itest: fix typo and formatting --- .../lnd_multi-hop_htlc_remote_chain_claim_test.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lntest/itest/lnd_multi-hop_htlc_remote_chain_claim_test.go b/lntest/itest/lnd_multi-hop_htlc_remote_chain_claim_test.go index 1aeff01e2..72a3c63cf 100644 --- a/lntest/itest/lnd_multi-hop_htlc_remote_chain_claim_test.go +++ b/lntest/itest/lnd_multi-hop_htlc_remote_chain_claim_test.go @@ -101,15 +101,17 @@ func testMultiHopHtlcRemoteChainClaim(net *lntest.NetworkHarness, t *harnessTest // bob will attempt to redeem his anchor commitment (if the channel // type is of that type). if c == commitTypeAnchors { - _, err = waitForNTxsInMempool(net.Miner.Node, 1, minerMempoolTimeout) + _, err = waitForNTxsInMempool( + net.Miner.Node, 1, minerMempoolTimeout, + ) if err != nil { - t.Fatalf("unable to find bob's anchor commit sweep: %v", err) - + t.Fatalf("unable to find bob's anchor commit sweep: %v", + err) } } // Mine enough blocks for Alice to sweep her funds from the force - // closed channel. closeCHannelAndAssertType() already mined a block + // closed channel. closeChannelAndAssertType() already mined a block // containing the commitment tx and the commit sweep tx will be // broadcast immediately before it can be included in a block, so mine // one less than defaultCSV in order to perform mempool assertions.