From fd97ea947e8b31697ad317b0ef14addb924a0a7b Mon Sep 17 00:00:00 2001 From: lateminer <9951982+lateminer@users.noreply.github.com> Date: Fri, 5 Jul 2024 18:12:05 +0200 Subject: [PATCH] Set correct `ESTIMATE_FEE` and `RELAY_FEE` values for Blackcoin testnet --- electrumx/lib/coins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrumx/lib/coins.py b/electrumx/lib/coins.py index 0499b592..4769aeda 100644 --- a/electrumx/lib/coins.py +++ b/electrumx/lib/coins.py @@ -1705,8 +1705,8 @@ class BlackcoinTestnet(Blackcoin): TX_PER_BLOCK = 2 RPC_PORT = 25715 REORG_LIMIT = 500 - ESTIMATE_FEE = 0.001 - RELAY_FEE = 0.001 + ESTIMATE_FEE = 0.0001 + RELAY_FEE = 0.0001 PEERS = [ 'electrum1.blackcoin.nl t10011 s10012', 'electrum2.blackcoin.nl t20011 s20012',