diff options
| author | xiphon <xiphon@protonmail.com> | 2020-01-22 16:30:47 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-01-25 05:34:51 +0000 |
| commit | dab604e010da4a77cd4ecfc2514f2b4d3dac48b6 (patch) | |
| tree | 3549ad0e0dbe846e432c5bbe67486fb590ba38a2 /src/wallet/api/wallet.h | |
| parent | 51873fec043c4b8506b87d729290105b43fae2cb (diff) | |
| download | monzero-core-dab604e010da4a77cd4ecfc2514f2b4d3dac48b6.tar.gz monzero-core-dab604e010da4a77cd4ecfc2514f2b4d3dac48b6.tar.xz monzero-core-dab604e010da4a77cd4ecfc2514f2b4d3dac48b6.zip | |
wallet2_api: implement estimateTransactionFee
Diffstat (limited to 'src/wallet/api/wallet.h')
| -rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 331bf4b38..e46a62340 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -166,6 +166,8 @@ public: bool importKeyImages(const std::string &filename) override; virtual void disposeTransaction(PendingTransaction * t) override; + virtual uint64_t estimateTransactionFee(const std::vector<std::pair<std::string, uint64_t>> &destinations, + PendingTransaction::Priority priority) const override; virtual TransactionHistory * history() override; virtual AddressBook * addressBook() override; virtual Subaddress * subaddress() override; |
