aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-05-16 22:47:29 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-05-16 22:55:58 +0200
commitb3e42b6d02e8d19658a9135e427ebceab5367779 (patch)
tree29d9f99f470ad78cd2da6ce4673a6837642336ab /src/main.h
parent169d379c98357a17e634f34b5e72033c69f9a7cb (diff)
parentd87b198b7334317952ca6a1377e25b5c859a1767 (diff)
downloadbitcoin-b3e42b6d02e8d19658a9135e427ebceab5367779.tar.xz
Merge #8059: Remove unneeded feerate param from RelayTransaction/AcceptToMemoryPool.
d87b198 Remove unneeded feerate param from RelayTransaction/AcceptToMemoryPool. (Gregory Maxwell)
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 548218a1b5..576f73b5f2 100644
--- a/src/main.h
+++ b/src/main.h
@@ -295,7 +295,7 @@ void PruneAndFlush();
/** (try to) add transaction to memory pool **/
bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransaction &tx, bool fLimitFree,
- bool* pfMissingInputs, CFeeRate* txFeeRate, bool fOverrideMempoolLimit=false, const CAmount nAbsurdFee=0);
+ bool* pfMissingInputs, bool fOverrideMempoolLimit=false, const CAmount nAbsurdFee=0);
/** Convert CValidationState to a human-readable message for logging */
std::string FormatStateMessage(const CValidationState &state);