From 8cdb070fcf98b58877826472b95b013f526c2ce0 Mon Sep 17 00:00:00 2001 From: Jesse de Wit Date: Fri, 1 Mar 2024 13:43:21 +0100 Subject: [PATCH] itest: give lsp a reserve utxo --- itest/lsps2_zero_conf_utxo_test.go | 2 ++ itest/zero_conf_utxo_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/itest/lsps2_zero_conf_utxo_test.go b/itest/lsps2_zero_conf_utxo_test.go index cde406bd..11058281 100644 --- a/itest/lsps2_zero_conf_utxo_test.go +++ b/itest/lsps2_zero_conf_utxo_test.go @@ -27,6 +27,8 @@ func testLsps2ZeroConfUtxo(p *testParams) { tempaddr := lsp.LightningNode().GetNewAddress() p.m.SendToAddress(tempaddr, 210000) + reserveaddr := lsp.LightningNode().GetNewAddress() + p.m.SendToAddress(reserveaddr, 50000) p.m.MineBlocks(6) lsp.LightningNode().WaitForSync() diff --git a/itest/zero_conf_utxo_test.go b/itest/zero_conf_utxo_test.go index 30ea3946..cb2481a4 100644 --- a/itest/zero_conf_utxo_test.go +++ b/itest/zero_conf_utxo_test.go @@ -27,6 +27,8 @@ func testOpenZeroConfUtxo(p *testParams) { tempaddr := lsp.LightningNode().GetNewAddress() p.m.SendToAddress(tempaddr, 210000) + reserveaddr := lsp.LightningNode().GetNewAddress() + p.m.SendToAddress(reserveaddr, 50000) p.m.MineBlocks(6) lsp.LightningNode().WaitForSync()