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:
parent
1d0b0e6ed8
commit
64495cc5fe
|
@ -60,7 +60,7 @@ pub const MAX_SCRIPTNUM_VALUE: u32 = 0x80000000; // 2^31
|
||||||
/// The maximum value allowed in an output (useful for sanity checking,
|
/// The maximum value allowed in an output (useful for sanity checking,
|
||||||
/// since keeping everything below this value should prevent overflows
|
/// since keeping everything below this value should prevent overflows
|
||||||
/// if you are doing anything remotely sane with monetary values).
|
/// 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
|
21_000_000 * COIN_VALUE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue