mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-03 09:28:34 +02:00
lntest: fix error message in WaitForChannelCloseEvent
Resp is always nil, so we actually need to log event.Update here.
This commit is contained in:
parent
5546edccf6
commit
39aa949a75
@ -541,8 +541,8 @@ func (h HarnessTest) WaitForChannelCloseEvent(
|
||||
require.NoError(h, err)
|
||||
|
||||
resp, ok := event.Update.(*lnrpc.CloseStatusUpdate_ChanClose)
|
||||
require.Truef(h, ok, "expected channel open update, instead got %v",
|
||||
resp)
|
||||
require.Truef(h, ok, "expected channel close update, instead got %v",
|
||||
event.Update)
|
||||
|
||||
txid, err := chainhash.NewHash(resp.ChanClose.ClosingTxid)
|
||||
require.NoErrorf(h, err, "wrong format found in closing txid: %v",
|
||||
|
Loading…
x
Reference in New Issue
Block a user