Drop Network arg from max_money()

Amount of coins available stay in the same across Bitcoin network:
signet, testnet, mainet. From my understanding this is a leftover
from some potential multi-chain support.
This commit is contained in:
Antoine Riard 2022-11-17 21:50:03 -05:00
parent 1d0b0e6ed8
commit 64495cc5fe
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ pub const MAX_SCRIPTNUM_VALUE: u32 = 0x80000000; // 2^31
/// The maximum value allowed in an output (useful for sanity checking,
/// since keeping everything below this value should prevent overflows
/// if you are doing anything remotely sane with monetary values).
pub fn max_money(_: Network) -> u64 {
pub fn max_money() -> u64 {
21_000_000 * COIN_VALUE
}