rpc: display HTLC amount in satoshis in ListChannels response
Before this commit, they were displayed in mSAT which violates the current trend of always displaying amounts externally in satoshis.
This commit is contained in:
parent
f189e2395a
commit
1be2a2a56a
@ -1337,7 +1337,7 @@ func (r *rpcServer) ListChannels(ctx context.Context,
|
||||
for i, htlc := range localCommit.Htlcs {
|
||||
channel.PendingHtlcs[i] = &lnrpc.HTLC{
|
||||
Incoming: htlc.Incoming,
|
||||
Amount: int64(htlc.Amt),
|
||||
Amount: int64(htlc.Amt.ToSatoshis()),
|
||||
HashLock: htlc.RHash[:],
|
||||
ExpirationHeight: htlc.RefundTimeout,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user