diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-11-08 20:03:07 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-11-08 20:03:07 +0000 |
commit | 40a68e22fadda6ab767d9ff8ec9b9b1b4c730125 (patch) | |
tree | e76af62b0de315b95a5dcc89d274fd05b87e6b2b /src/wallet/api/wallet.h | |
parent | Merge pull request #1295 (diff) | |
download | monero-40a68e22fadda6ab767d9ff8ec9b9b1b4c730125.tar.xz |
wallet2_api: add API for create_unmixable_sweep_transactions
Diffstat (limited to '')
-rw-r--r-- | src/wallet/api/wallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index c8a59f7c3..f485d4992 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -91,6 +91,7 @@ public: PendingTransaction * createTransaction(const std::string &dst_addr, const std::string &payment_id, uint64_t amount, uint32_t mixin_count, PendingTransaction::Priority priority = PendingTransaction::Priority_Low); + virtual PendingTransaction * createSweepUnmixableTransaction(); virtual void disposeTransaction(PendingTransaction * t); virtual TransactionHistory * history() const; |