diff options
| author | MarcoFalke <[email protected]> | 2016-02-03 13:14:23 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-02-03 13:14:23 +0100 |
| commit | fad6244879be8b9916e85cff4ecdb4377dd62ee2 (patch) | |
| tree | f6bae298399f9cdac1b4c70a21cde8a4022eef67 /src/main.cpp | |
| parent | [wallet.h] Remove main.h include (diff) | |
| download | discoin-fad6244879be8b9916e85cff4ecdb4377dd62ee2.tar.xz discoin-fad6244879be8b9916e85cff4ecdb4377dd62ee2.zip | |
ATMP: make nAbsurdFee const
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9ed9d0e0b..e4e4bc62b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -812,8 +812,8 @@ std::string FormatStateMessage(const CValidationState &state) state.GetRejectCode()); } -bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const CTransaction &tx, bool fLimitFree, - bool* pfMissingInputs, bool fOverrideMempoolLimit, CAmount nAbsurdFee, +bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState& state, const CTransaction& tx, bool fLimitFree, + bool* pfMissingInputs, bool fOverrideMempoolLimit, const CAmount nAbsurdFee, std::vector<uint256>& vHashTxnToUncache) { const uint256 hash = tx.GetHash(); |