Browse Source

Merge pull request #5209

9b1627d [Wallet] Reduce minTxFee for transaction creation to 1000 satoshis (Cozz Lovan)
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
124b4895b8
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/wallet.cpp

2
src/wallet.cpp

@ -35,7 +35,7 @@ bool fPayAtLeastCustomFee = true; @@ -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
*

Loading…
Cancel
Save