Skip to content

Commit 2d093ac

Browse files
authored
Merge pull request lightningnetwork#6741 from morehouse/fix_sign_psbt
itest: fix sign_psbt failure
2 parents d9f4b36 + f3c0dd1 commit 2d093ac

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/release-notes/release-notes-0.15.1.md

+3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@
7373
* [Fixed a bug in the `SignPsbt` RPC that produced an invalid response when
7474
signing a NP2WKH input](https://github.com/lightningnetwork/lnd/pull/6687).
7575

76+
* [Fix race condition in `sign_psbt` test](https://github.com/lightningnetwork/lnd/pull/6741).
77+
7678
* [Update the `urfave/cli`
7779
package](https://github.com/lightningnetwork/lnd/pull/6682) because of a flag
7880
parsing bug.
@@ -116,6 +118,7 @@
116118
* Elle Mouton
117119
* ErikEk
118120
* Eugene Siegel
121+
* Matt Morehouse
119122
* Slyghtning
120123
* Oliver Gugger
121124
* Olaoluwa Osuntokun

lntest/itest/lnd_psbt_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -1381,4 +1381,6 @@ func sendAllCoinsToAddrType(ctx context.Context, t *harnessTest,
13811381
require.NoError(t.t, err)
13821382

13831383
_ = mineBlocks(t, net, 1, 1)[0]
1384+
err = node.WaitForBlockchainSync()
1385+
require.NoError(t.t, err)
13841386
}

0 commit comments

Comments
 (0)