diff options
| author | Russell Yanofsky <[email protected]> | 2017-07-28 22:45:01 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2019-02-22 15:43:02 -0400 |
| commit | cc3836e8f90894432db06d9de6b20eac53d93cbe (patch) | |
| tree | 25b167f26fa6a1bc1123fec1e9e8b9d5e2968faa /src/interfaces/chain.cpp | |
| parent | Remove uses of fee globals in wallet code (diff) | |
| download | discoin-cc3836e8f90894432db06d9de6b20eac53d93cbe.tar.xz discoin-cc3836e8f90894432db06d9de6b20eac53d93cbe.zip | |
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 f88860687..bb2af5b8b 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 |