aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCozz Lovan <cozzlovan@yahoo.com>2014-11-02 21:25:27 +0100
committerCozz Lovan <cozzlovan@yahoo.com>2014-11-04 22:29:40 +0100
commit9b1627d13ecbd6a22c284521ac9351a59af4b129 (patch)
tree2e306e2baee0275920deac08b0ef57cc6d3dccb0 /src
parent06037f3f46463e65ab74e0f34ba5f7a869d053fd (diff)
downloadbitcoin-9b1627d13ecbd6a22c284521ac9351a59af4b129.tar.xz
[Wallet] Reduce minTxFee for transaction creation to 1000 satoshis
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 d392149dbb..99d4ac2e55 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -33,7 +33,7 @@ bool bSpendZeroConfChange = 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
*