aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-08-25 15:28:11 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-08-25 15:27:48 +0200
commitfa28bfa341b0f1ca53ae2fc8d3d08afbf8d69a61 (patch)
tree07176776b32d46efaecd07ada06da275fdf9bd40 /src/wallet/wallet.h
parent3685e0c1da296be533fef4abcf1b1734ed7d85e7 (diff)
downloadbitcoin-fa28bfa341b0f1ca53ae2fc8d3d08afbf8d69a61.tar.xz
[wallet] Set fLimitFree = true
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 7fc6ce5de5..db9e9d1a15 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -212,7 +212,7 @@ public:
bool IsInMainChain() const { const CBlockIndex *pindexRet; return GetDepthInMainChain(pindexRet) > 0; }
int GetBlocksToMaturity() const;
/** Pass this transaction to the mempool. Fails if absolute fee exceeds absurd fee. */
- bool AcceptToMemoryPool(bool fLimitFree, const CAmount nAbsurdFee);
+ bool AcceptToMemoryPool(const CAmount& nAbsurdFee);
bool hashUnset() const { return (hashBlock.IsNull() || hashBlock == ABANDON_HASH); }
bool isAbandoned() const { return (hashBlock == ABANDON_HASH); }
void setAbandoned() { hashBlock = ABANDON_HASH; }