aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Havar <ryan@moneypot.com>2015-09-07 23:12:25 +0000
committerWladimir J. van der Laan <laanwj@gmail.com>2015-11-30 12:19:55 +0100
commit7d0a05f4c16aba51d980a33184a080f224a025f4 (patch)
tree36269640032300eee014665b1535d045be3e9d4e
parent595c8d6301cf77dc7e2afd3b990edc0c80277f5f (diff)
downloadbitcoin-7d0a05f4c16aba51d980a33184a080f224a025f4.tar.xz
Default fPayAtLeastCustomFee to false
This allows for much finer control of the transaction fees per kilobyte as it prevent small transactions using a fee that is more appropriate for one that is of a kilobyte. This also allows controlling the fee per kilobyte over rpc such that: bitcoin-cli settxfee `bitcoin-cli estimatefee 2` would make sense, while currently it grossly fails often by a factor of x3 Conflicts: src/wallet/wallet.cpp Rebased-From: 4b89f01d727433f02cc8ff72799e0d0a7e6ceafe
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index f412e471e2..cccb4d071e 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -34,7 +34,7 @@ CAmount maxTxFee = DEFAULT_TRANSACTION_MAXFEE;
unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET;
bool bSpendZeroConfChange = true;
bool fSendFreeTransactions = false;
-bool fPayAtLeastCustomFee = true;
+bool fPayAtLeastCustomFee = false;
/**
* Fees smaller than this (in satoshi) are considered zero fee (for transaction creation)