lntest: fix error message in WaitForChannelCloseEvent

Resp is always nil, so we actually need to log event.Update here.
This commit is contained in:
Olaoluwa Osuntokun 2024-03-07 20:15:29 -08:00
parent 5546edccf6
commit 39aa949a75

View File

@ -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",