aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2_api.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-08 20:03:07 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-08 20:03:07 +0000
commit40a68e22fadda6ab767d9ff8ec9b9b1b4c730125 (patch)
treee76af62b0de315b95a5dcc89d274fd05b87e6b2b /src/wallet/wallet2_api.h
parentMerge pull request #1295 (diff)
downloadmonero-40a68e22fadda6ab767d9ff8ec9b9b1b4c730125.tar.xz
wallet2_api: add API for create_unmixable_sweep_transactions
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet2_api.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h
index 8427ba250..55aa3112f 100644
--- a/src/wallet/wallet2_api.h
+++ b/src/wallet/wallet2_api.h
@@ -324,6 +324,14 @@ struct Wallet
PendingTransaction::Priority = PendingTransaction::Priority_Low) = 0;
/*!
+ * \brief createSweepUnmixableTransaction creates transaction with unmixable outputs.
+ * \return PendingTransaction object. caller is responsible to check PendingTransaction::status()
+ * after object returned
+ */
+
+ virtual PendingTransaction * createSweepUnmixableTransaction() = 0;
+
+ /*!
* \brief disposeTransaction - destroys transaction object
* \param t - pointer to the "PendingTransaction" object. Pointer is not valid after function returned;
*/