mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-29 19:22:40 +01:00
This commit fixes a bug within the btcwallet implementation of the BlockChainIO interface. The exact nature of the bug was a rounding error that would only manifest if the value of the UTXO was below 1 BTC. The tests within this package currently test channels with mostly whole values of BTC, as a result the bug went unnoticed until now. The fix itself is trivial: convert to an int64 AFTER performing the multiplication to convert to satoshis from Bitcoin.