From: Drak Date: Mon, 14 Apr 2014 20:20:42 +0000 (+0100) Subject: Lower minimum tx fee in line with Bitcoin 0.9 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=d082ed3cb57603b20c57cb2ca968b0e54db19106;p=electrum-nvc.git Lower minimum tx fee in line with Bitcoin 0.9 Since Bitcoin Core 0.9 the minimum relay tx fee was lowered to `0.00001`. --- diff --git a/lib/bitcoin.py b/lib/bitcoin.py index 28eb8d0..e3274cc 100644 --- a/lib/bitcoin.py +++ b/lib/bitcoin.py @@ -677,7 +677,7 @@ def bip32_private_key(sequence, k, chain): ################################## transactions -MIN_RELAY_TX_FEE = 10000 +MIN_RELAY_TX_FEE = 1000