rpcserver: fix log statement in channelbalance

Fixes a typo and missing format 'verb' in the RPCS debug log.
This commit is contained in:
Oliver Gugger 2020-12-22 09:39:43 +01:00
parent 9cd9bff59f
commit 49edb2b524
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -2865,7 +2865,7 @@ func (r *rpcServer) ChannelBalance(ctx context.Context,
rpcsLog.Debugf("[channelbalance] local_balance=%v remote_balance=%v "+
"unsettled_local_balance=%v unsettled_remote_balance=%v "+
"pending_open_local_balance=%v pending_open_remove_balance",
"pending_open_local_balance=%v pending_open_remote_balance=%v",
localBalance, remoteBalance, unsettledLocalBalance,
unsettledRemoteBalance, pendingOpenLocalBalance,
pendingOpenRemoteBalance)