aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-11-26 10:58:01 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-11-26 10:58:20 +0100
commit124b4895b85998cb5b935767f682fc633ee3ac76 (patch)
tree89a6a277be2661af9b1ad468e02e9bffde009f05 /src
parente6751ca68abdb15db0ad91a9040d7bc1a413ae31 (diff)
parent9b1627d13ecbd6a22c284521ac9351a59af4b129 (diff)
downloadbitcoin-124b4895b85998cb5b935767f682fc633ee3ac76.tar.xz
Merge pull request #5209
9b1627d [Wallet] Reduce minTxFee for transaction creation to 1000 satoshis (Cozz Lovan)
Diffstat (limited to 'src')
-rw-r--r--src/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 353010ae07..000a088b97 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -35,7 +35,7 @@ bool fPayAtLeastCustomFee = true;
* Fees smaller than this (in satoshi) are considered zero fee (for transaction creation)
* Override with -mintxfee
*/
-CFeeRate CWallet::minTxFee = CFeeRate(10000);
+CFeeRate CWallet::minTxFee = CFeeRate(1000);
/** @defgroup mapWallet
*