diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-11-26 10:58:01 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-26 10:58:20 +0100 |
| commit | 124b4895b85998cb5b935767f682fc633ee3ac76 (patch) | |
| tree | 89a6a277be2661af9b1ad468e02e9bffde009f05 /src/wallet.cpp | |
| parent | Merge pull request #5361 (diff) | |
| parent | [Wallet] Reduce minTxFee for transaction creation to 1000 satoshis (diff) | |
| download | discoin-124b4895b85998cb5b935767f682fc633ee3ac76.tar.xz discoin-124b4895b85998cb5b935767f682fc633ee3ac76.zip | |
Merge pull request #5209
9b1627d [Wallet] Reduce minTxFee for transaction creation to 1000 satoshis (Cozz Lovan)
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 353010ae0..000a088b9 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 * |