Merge pull request #6741 from morehouse/fix_sign_psbt

itest: fix sign_psbt failure
This commit is contained in:
Oliver Gugger 2022-07-22 15:27:12 +02:00 committed by GitHub
commit 2d093ac183
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -73,6 +73,8 @@
* [Fixed a bug in the `SignPsbt` RPC that produced an invalid response when
signing a NP2WKH input](https://github.com/lightningnetwork/lnd/pull/6687).
* [Fix race condition in `sign_psbt` test](https://github.com/lightningnetwork/lnd/pull/6741).
* [Update the `urfave/cli`
package](https://github.com/lightningnetwork/lnd/pull/6682) because of a flag
parsing bug.
@ -116,6 +118,7 @@
* Elle Mouton
* ErikEk
* Eugene Siegel
* Matt Morehouse
* Slyghtning
* Oliver Gugger
* Olaoluwa Osuntokun

View file

@ -1381,4 +1381,6 @@ func sendAllCoinsToAddrType(ctx context.Context, t *harnessTest,
require.NoError(t.t, err)
_ = mineBlocks(t, net, 1, 1)[0]
err = node.WaitForBlockchainSync()
require.NoError(t.t, err)
}