diff options
| author | MarcoFalke <[email protected]> | 2018-04-07 12:12:46 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-04-23 10:49:21 -0400 |
| commit | fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c (patch) | |
| tree | d12d25bb207858129003ef6c33956f6c8a3fcdcb /src/interfaces/node.h | |
| parent | Merge #12510: test: Add rpc_bind test to default-run tests (diff) | |
| download | discoin-fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c.tar.xz discoin-fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c.zip | |
wallet: Make fee settings non-static members
Diffstat (limited to 'src/interfaces/node.h')
| -rw-r--r-- | src/interfaces/node.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 84e869100..3cebe53eb 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -26,11 +26,9 @@ class Coin; class RPCTimerInterface; class UniValue; class proxyType; -enum class FeeReason; struct CNodeStateStats; namespace interfaces { - class Handler; class Wallet; @@ -152,18 +150,6 @@ public: //! Get network active. virtual bool getNetworkActive() = 0; - //! Get tx confirm target. - virtual unsigned int getTxConfirmTarget() = 0; - - //! Get required fee. - virtual CAmount getRequiredFee(unsigned int tx_bytes) = 0; - - //! Get minimum fee. - virtual CAmount getMinimumFee(unsigned int tx_bytes, - const CCoinControl& coin_control, - int* returned_target, - FeeReason* reason) = 0; - //! Get max tx fee. virtual CAmount getMaxTxFee() = 0; |