diff options
| author | John Newbery <[email protected]> | 2019-02-20 13:45:16 -0500 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2019-04-18 11:34:42 -0400 |
| commit | 5c759c73b2602c7fde1c50dbafe5525904c1b64c (patch) | |
| tree | 6abb472994f52454f55b70d51bd79755f5883104 /src/interfaces/chain.h | |
| parent | Merge #15718: docs: Improve netaddress comments (diff) | |
| download | discoin-5c759c73b2602c7fde1c50dbafe5525904c1b64c.tar.xz discoin-5c759c73b2602c7fde1c50dbafe5525904c1b64c.zip | |
[wallet] Move maxTxFee to wallet
This commit moves the maxtxfee setting to the wallet. There is only
one minor behavior change:
- an error message in feebumper now refers to -maxtxfee instead of
maxTxFee.
Diffstat (limited to 'src/interfaces/chain.h')
| -rw-r--r-- | src/interfaces/chain.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index 17d7b6d8f..d62ee683f 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -216,12 +216,6 @@ public: //! Relay dust fee setting (-dustrelayfee), reflecting lowest rate it's economical to spend. virtual CFeeRate relayDustFee() = 0; - //! Node max tx fee setting (-maxtxfee). - //! This could be replaced by a per-wallet max fee, as proposed at - //! https://github.com/bitcoin/bitcoin/issues/15355 - //! But for the time being, wallets call this to access the node setting. - virtual CAmount maxTxFee() = 0; - //! Check if pruning is enabled. virtual bool getPruneMode() = 0; |