aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-02-03 13:14:23 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-02-03 13:14:23 +0100
commitfad6244879be8b9916e85cff4ecdb4377dd62ee2 (patch)
treef6bae298399f9cdac1b4c70a21cde8a4022eef67 /src/wallet/wallet.h
parentfa762d0f00ba1ad381a749e139f37aef673b70ba (diff)
downloadbitcoin-fad6244879be8b9916e85cff4ecdb4377dd62ee2.tar.xz
ATMP: make nAbsurdFee const
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 5072042b8d..c02323d6ec 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -205,7 +205,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, CAmount nAbsurdFee);
+ bool AcceptToMemoryPool(bool fLimitFree, const CAmount nAbsurdFee);
bool hashUnset() const { return (hashBlock.IsNull() || hashBlock == ABANDON_HASH); }
bool isAbandoned() const { return (hashBlock == ABANDON_HASH); }
void setAbandoned() { hashBlock = ABANDON_HASH; }