lntest/itest: log node name in addition to ID if waitForChannels fails

This commit is contained in:
Olaoluwa Osuntokun 2021-07-14 18:34:06 -07:00
parent edd4152682
commit ea7ea33e24
No known key found for this signature in database
GPG Key ID: 3BBD59E99B280306

View File

@ -346,9 +346,9 @@ func (c *mppTestContext) waitForChannels() {
ctxt, _ := context.WithTimeout(ctxb, defaultTimeout)
err = node.WaitForNetworkChannelOpen(ctxt, chanPoint)
if err != nil {
c.t.Fatalf("(%d): timeout waiting for "+
c.t.Fatalf("(%v:%d): timeout waiting for "+
"channel(%s) open: %v",
node.NodeID, point, err)
node.Cfg.Name, node.NodeID, point, err)
}
}
}