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.h | |
parent | cc02c796d3517931acc861b0f9bc50e36e1c95f9 (diff) |
Remove uses of fPruneMode in wallet code
This commit does not change behavior.
Diffstat (limited to 'src/interfaces/chain.h')
-rw-r--r-- | src/interfaces/chain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index d0f74cb100..96e4f8cf0b 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -155,6 +155,9 @@ public: //! Pool min fee. virtual CFeeRate mempoolMinFee() = 0; + + //! Check if pruning is enabled. + virtual bool getPruneMode() = 0; }; //! Interface to let node manage chain clients (wallets, or maybe tools for |