diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-09 13:00:43 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-12 19:24:13 +0000 |
| commit | c779b376fc06c1912b896549b5f39c4a6ef0ec5a (patch) | |
| tree | 3ab548d3e931a5db6e88de6897105584773f686c /src/libwalletqt/Wallet.h | |
| parent | 2143392b84e089319decee65e63c2376e6fdffd4 (diff) | |
| download | monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.tar.gz monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.tar.xz monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.zip | |
Support for sweeping all outputs
Diffstat (limited to 'src/libwalletqt/Wallet.h')
| -rw-r--r-- | src/libwalletqt/Wallet.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libwalletqt/Wallet.h b/src/libwalletqt/Wallet.h index ecdfa2fd..65d955ba 100644 --- a/src/libwalletqt/Wallet.h +++ b/src/libwalletqt/Wallet.h @@ -126,12 +126,16 @@ public: Q_INVOKABLE PendingTransaction * createTransaction(const QString &dst_addr, const QString &payment_id, quint64 amount, quint32 mixin_count, PendingTransaction::Priority priority); + //! creates async transaction Q_INVOKABLE void createTransactionAsync(const QString &dst_addr, const QString &payment_id, quint64 amount, quint32 mixin_count, PendingTransaction::Priority priority); - // + //! creates transaction with all outputs + Q_INVOKABLE PendingTransaction * createTransactionAll(const QString &dst_addr, const QString &payment_id, + quint32 mixin_count, PendingTransaction::Priority priority); + //! creates sweep unmixable transaction Q_INVOKABLE PendingTransaction * createSweepUnmixableTransaction(); |
