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/wallet2_api.h | |
parent | Merge pull request #1295 (diff) | |
download | monero-40a68e22fadda6ab767d9ff8ec9b9b1b4c730125.tar.xz |
wallet2_api: add API for create_unmixable_sweep_transactions
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 8 |
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; */ |