Browse Source

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.
master
Kristaps Kaupe 2 years ago
parent
commit
9c13180c13
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      src/jmclient/blockchaininterface.py

2
src/jmclient/blockchaininterface.py

@ -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'))

Loading…
Cancel
Save