commands: correct the max feerate value

We should have a functional test for this...
This commit is contained in:
Antoine Poinsot 2022-12-08 16:57:39 +01:00
parent 54410cd9c4
commit 9f23161a53
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -39,7 +39,7 @@ const DUST_OUTPUT_SATS: u64 = 5_000;
const MAX_FEE: u64 = bitcoin::blockdata::constants::COIN_VALUE;
// Assume that paying more than 1000sat/vb in feerate is a bug.
const MAX_FEERATE: u64 = bitcoin::blockdata::constants::COIN_VALUE;
const MAX_FEERATE: u64 = 1_000;
// Timestamp in the header of the genesis block. Used for sanity checks.
const MAINNET_GENESIS_TIME: u32 = 1231006505;