diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-07-28 22:45:01 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2019-02-22 15:43:02 -0400 |
commit | cc3836e8f90894432db06d9de6b20eac53d93cbe (patch) | |
tree | 25b167f26fa6a1bc1123fec1e9e8b9d5e2968faa /src/interfaces/chain.cpp | |
parent | cc02c796d3517931acc861b0f9bc50e36e1c95f9 (diff) |
Remove uses of fPruneMode in wallet code
This commit does not change behavior.
Diffstat (limited to 'src/interfaces/chain.cpp')
-rw-r--r-- | src/interfaces/chain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/chain.cpp b/src/interfaces/chain.cpp index f888606879..bb2af5b8ba 100644 --- a/src/interfaces/chain.cpp +++ b/src/interfaces/chain.cpp @@ -228,6 +228,7 @@ public: { return ::mempool.GetMinFee(gArgs.GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000); } + bool getPruneMode() override { return ::fPruneMode; } }; } // namespace |