diff options
| author | MarcoFalke <[email protected]> | 2019-02-23 11:04:20 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-02-25 10:12:29 -0500 |
| commit | fa5dc3534be1d58bbca641a32cd87cd97ce8882a (patch) | |
| tree | 04d695f854abddbc515f7e70301d659b16b7d9e0 /src/policy/rbf.cpp | |
| parent | Merge #15408: Remove unused TransactionError constants (diff) | |
| download | discoin-fa5dc3534be1d58bbca641a32cd87cd97ce8882a.tar.xz discoin-fa5dc3534be1d58bbca641a32cd87cd97ce8882a.zip | |
rpc: Pass mempool into MempoolToJSON
Diffstat (limited to 'src/policy/rbf.cpp')
| -rw-r--r-- | src/policy/rbf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/rbf.cpp b/src/policy/rbf.cpp index 0dc130d10..c73a97fd7 100644 --- a/src/policy/rbf.cpp +++ b/src/policy/rbf.cpp @@ -14,7 +14,7 @@ bool SignalsOptInRBF(const CTransaction &tx) return false; } -RBFTransactionState IsRBFOptIn(const CTransaction &tx, CTxMemPool &pool) +RBFTransactionState IsRBFOptIn(const CTransaction& tx, const CTxMemPool& pool) { AssertLockHeld(pool.cs); |