mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 06:21:40 +01:00
lnwallet: ensure created channels are stopped in ChanSync tests
This commit is contained in:
parent
a655396616
commit
94ffb07b90
1 changed files with 2 additions and 0 deletions
|
@ -3160,6 +3160,7 @@ func TestChanSyncOweRevocationAndCommit(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("unable to restart channel: %v", err)
|
||||
}
|
||||
defer bobChannel.Stop()
|
||||
assertBobSendsRevokeAndCommit()
|
||||
|
||||
// We'll now finish the state transition by having Alice process both
|
||||
|
@ -3308,6 +3309,7 @@ func TestChanSyncOweRevocationAndCommitForceTransition(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("unable to restart channel: %v", err)
|
||||
}
|
||||
defer bobChannel.Stop()
|
||||
if len(bobMsgsToSend) != 2 {
|
||||
t.Fatalf("expected bob to send %v messages, instead "+
|
||||
"sends: %v", 2, spew.Sdump(bobMsgsToSend))
|
||||
|
|
Loading…
Add table
Reference in a new issue