aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorCozz Lovan <cozzlovan@yahoo.com>2014-11-02 00:47:39 +0100
committerCozz Lovan <cozzlovan@yahoo.com>2014-11-19 16:04:53 +0100
commited3e5e468c5b7973d71efe51c90c3a301d570e27 (patch)
tree768af625bf6637f7685dda3abd78fcc75f7b6e3d /src/wallet.cpp
parent0ed9675be4a28b6240e10c0d3fdb81373bd56bbc (diff)
downloadbitcoin-ed3e5e468c5b7973d71efe51c90c3a301d570e27.tar.xz
[Wallet] Add global boolean whether to pay at least the custom fee (default=true)
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 1b8e387e44..f1cf104974 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -29,6 +29,7 @@ CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE);
unsigned int nTxConfirmTarget = 1;
bool bSpendZeroConfChange = true;
bool fSendFreeTransactions = true;
+bool fPayAtLeastCustomFee = true;
/**
* Fees smaller than this (in satoshi) are considered zero fee (for transaction creation)
@@ -1383,7 +1384,10 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, CAmount> >& vecSend,
{
LOCK2(cs_main, cs_wallet);
{
- nFeeRet = payTxFee.GetFeePerK();
+ if (fPayAtLeastCustomFee)
+ nFeeRet = payTxFee.GetFeePerK();
+ else
+ nFeeRet = 0;
while (true)
{
txNew.vin.clear();