diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-10-18 20:54:50 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-10-18 21:05:07 +0200 |
| commit | e10af96cf450494fdb893b71540e709ed311b871 (patch) | |
| tree | 5d3140bf4c9f0ca37476dab86d85cf30b70475cd /src/wallet/wallet.h | |
| parent | Merge #8954: contrib: Add README for pgp keys (diff) | |
| parent | [rpc] rawtx: Prepare fLimitFree to make it an option (diff) | |
| download | discoin-e10af96cf450494fdb893b71540e709ed311b871.tar.xz discoin-e10af96cf450494fdb893b71540e709ed311b871.zip | |
Merge #8287: [wallet] Set fLimitFree = true
fa8b02d [rpc] rawtx: Prepare fLimitFree to make it an option (MarcoFalke)
fa28bfa [wallet] Set fLimitFree = true (MarcoFalke)
Diffstat (limited to 'src/wallet/wallet.h')
| -rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 077edcab2..3b37f7cb1 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -215,7 +215,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; } |