diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-27 14:55:13 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-07-18 23:02:18 +0300 |
commit | 083380cb8f121190746195c45e6766f543b87d0f (patch) | |
tree | 6fc2c36587ce832ccfb9d3e18cace59c2a142669 /src/wallet/api/wallet.h | |
parent | Wallet::paymentIdValid (diff) | |
download | monero-083380cb8f121190746195c45e6766f543b87d0f.tar.xz |
Transaction fee multiplier aka priority integraged
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 164aede1a..0896f51ee 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -71,8 +71,11 @@ public: uint64_t balance() const; uint64_t unlockedBalance() const; bool refresh(); + PendingTransaction * createTransaction(const std::string &dst_addr, const std::string &payment_id, - uint64_t amount, uint32_t mixin_count); + uint64_t amount, uint32_t mixin_count, + PendingTransaction::Priority priority = PendingTransaction::Priority_Low); + virtual void disposeTransaction(PendingTransaction * t); virtual TransactionHistory * history() const; virtual void setListener(WalletListener * l); |