Raise fallback fee rate from 10 sat/vB to 20 sat/vB

It's just current reality on mainnet, that's around what `bitcoin-cli
estimatesmartfee 1008` (1 week confirmation target) returns.
This commit is contained in:
Kristaps Kaupe 2024-02-10 02:19:38 +02:00
parent ca33ecafda
commit 9c13180c13
No known key found for this signature in database
GPG key ID: 33E472FE870C7E5D

View file

@ -253,7 +253,7 @@ class BlockchainInterface(ABC):
"""
# default to use if fees cannot be estimated
fallback_fee = 10000
fallback_fee = 20000
tx_fees_factor = abs(jm_single().config.getfloat('POLICY', 'tx_fees_factor'))