lbry: enlarge MaxSatoshi from 2e6 to 2e9

This commit is contained in:
Roy Lee 2021-04-11 04:21:41 -07:00 committed by Brannon King
parent e2ba6805a8
commit e3bdf5aa33

View file

@ -12,5 +12,5 @@ const (
SatoshiPerBitcoin = 1e8
// MaxSatoshi is the maximum transaction amount allowed in satoshi.
MaxSatoshi = 21e6 * SatoshiPerBitcoin
MaxSatoshi = 21e9 * SatoshiPerBitcoin
)