Skip to content

Commit

Permalink
fundingmanager: fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
joostjager committed Apr 20, 2020
1 parent 68e54bb commit 7b7edfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fundingmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -2725,8 +2725,9 @@ func (f *fundingManager) handleFundingLocked(fmsg *fundingLockedMsg) {

if err := fmsg.peer.AddNewChannel(channel, f.quit); err != nil {
fndgLog.Errorf("Unable to add new channel %v with peer %x: %v",
channel.FundingOutpoint,
fmsg.peer.IdentityKey().SerializeCompressed(),
channel.FundingOutpoint, err)
err)
}
}

Expand Down

0 comments on commit 7b7edfb

Please sign in to comment.