aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-03-31 15:12:48 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-03-31 15:12:48 -0500
commitd0065f3063c365ac9a65a655f145382408033c4f (patch)
tree160d7bcf555df0ecba8ee925bbdb5e1ba4ace964 /src/wallet/api/wallet.h
parentMerge pull request #6301 (diff)
parentwallet2_api: implement estimateTransactionFee (diff)
downloadmonero-d0065f3063c365ac9a65a655f145382408033c4f.tar.xz
Merge pull request #6302
dab604e wallet2_api: implement estimateTransactionFee (xiphon)
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r--src/wallet/api/wallet.h2
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;