Merge pull request #8373 from hieblmi/fix-funding-logs

funding: fix funding flow log
This commit is contained in:
Oliver Gugger 2024-01-15 09:24:50 +01:00 committed by GitHub
commit a2986f96da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -904,7 +904,8 @@ func (f *Manager) failFundingFlow(peer lnpeer.Peer, cid *chanIdentifier,
err := peer.RemovePendingChannel(cid.chanID)
if err != nil {
log.Errorf("Unable to remove channel %v with peer %x: "+
"%v", cid, peer.IdentityKey(), err)
"%v", cid,
peer.IdentityKey().SerializeCompressed(), err)
}
}