diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-11-09 14:11:56 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-11-09 14:11:57 +0200 |
commit | dc5e0e45cd49c32fb17bc9f9ef84a8e5faa8c318 (patch) | |
tree | ac679bf3edaaea506c8ee6672aacb149c8621d42 /src/wallet/wallet2_api.h | |
parent | Merge pull request #1309 (diff) | |
parent | wallet2_api: add API for create_unmixable_sweep_transactions (diff) | |
download | monero-dc5e0e45cd49c32fb17bc9f9ef84a8e5faa8c318.tar.xz |
Merge pull request #1310
40a68e2 wallet2_api: add API for create_unmixable_sweep_transactions (moneromooo-monero)
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 5af34d6a1..f0a9ea68b 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -336,6 +336,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; */ |