Browse Source

[Wallet] Reduce minTxFee for transaction creation to 1000 satoshis

pull/145/head
Cozz Lovan 10 years ago
parent
commit
9b1627d13e
  1. 2
      src/wallet.cpp

2
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
*

Loading…
Cancel
Save