From 0ef993d30c64cda764453b68b82e6bbdd00778d9 Mon Sep 17 00:00:00 2001 From: Roy Lee Date: Sun, 11 Apr 2021 04:21:41 -0700 Subject: [PATCH] lbry: enlarge MaxSatoshi from 2e6 to 2e9 --- const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/const.go b/const.go index c739460..41d48b3 100644 --- a/const.go +++ b/const.go @@ -12,5 +12,5 @@ const ( SatoshiPerBitcoin = 1e8 // MaxSatoshi is the maximum transaction amount allowed in satoshi. - MaxSatoshi = 21e6 * SatoshiPerBitcoin + MaxSatoshi = 21e9 * SatoshiPerBitcoin )