aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2016-08-25 15:28:11 +0200
committerMarcoFalke <[email protected]>2016-08-25 15:27:48 +0200
commitfa28bfa341b0f1ca53ae2fc8d3d08afbf8d69a61 (patch)
tree07176776b32d46efaecd07ada06da275fdf9bd40 /src/wallet/wallet.h
parentMerge #8261: The bit field is shown only when status is "started" (diff)
downloadarchived-discoin-fa28bfa341b0f1ca53ae2fc8d3d08afbf8d69a61.tar.xz
archived-discoin-fa28bfa341b0f1ca53ae2fc8d3d08afbf8d69a61.zip
[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 7fc6ce5de..db9e9d1a1 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; }