lncli: take chan_id as uint64 in getchaninfo

When taking in chan_id as a int64, there are some channels that cannot
be givn to lncli because they are out of range for an int64.
This commit is contained in:
Torkel Rogstad
2021-10-06 14:20:05 +02:00
parent ccc03931ad
commit 4d96f31f59
2 changed files with 9 additions and 5 deletions

View File

@@ -443,6 +443,10 @@ you.
* [Use the change output index when validating the reserved wallet balance for
SendCoins/SendMany calls](https://github.com/lightningnetwork/lnd/pull/5665)
* A [bug](https://github.com/lightningnetwork/lnd/pull/5834) has been fixed where
certain channels couldn't be passed to `lncli getchaninfo` due to their 8-byte
compact ID being too large for an int64.
## Documentation
The [code contribution guidelines have been updated to mention the new