diff options
author | Alex Morcos <morcos@chaincode.com> | 2017-01-13 16:53:21 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-01-17 13:21:35 -0500 |
commit | ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3 (patch) | |
tree | 2cb9752e8e999ca76984a3f169b5045bdbf31708 /src/txmempool.h | |
parent | 2a7b56cc0e33d74b548e38aa987e003a9801c8bd (diff) |
Remove unnecessary min fee argument in CTxMemPool constructor
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index ffb1c1309b..394337fe84 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -502,7 +502,7 @@ public: /** Create a new CTxMemPool. */ - CTxMemPool(const CFeeRate& _minReasonableRelayFee); + CTxMemPool(); ~CTxMemPool(); /** |