From b6f59048d33a360246e000fc45daf26d08a693de Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 14 Mar 2016 15:25:59 +0100 Subject: [PATCH] Revert "Default fPayAtLeastCustomFee to false" This reverts commit 7d0a05f4c16aba51d980a33184a080f224a025f4. This change in fee behavior was unexpected to users and shouldn't be in a backport release. See detailed timeline in https://github.com/bitcoin/bitcoin/issues/7633#issuecomment-195254622 for details. People can upgrade to 0.12 if they want this new behavior. --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index cccb4d071e3..f412e471e25 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 = false; +bool fPayAtLeastCustomFee = true; /** * Fees smaller than this (in satoshi) are considered zero fee (for transaction creation)