diff options
| author | Dusan Klinec <dusan.klinec@gmail.com> | 2019-06-18 13:15:39 +0200 |
|---|---|---|
| committer | Dusan Klinec <dusan.klinec@gmail.com> | 2019-06-20 14:57:10 +0200 |
| commit | 6d03d63c88af2e8ee0c52f77836bd3c018f55fe4 (patch) | |
| tree | a82a9bda796b33de81a98a83272043ada9cec601 /src/libwalletqt/Wallet.cpp | |
| parent | 8d49ad9ba4d5df3ca696274f2d885a6f8cbffb83 (diff) | |
| download | monzero-gui-6d03d63c88af2e8ee0c52f77836bd3c018f55fe4.tar.gz monzero-gui-6d03d63c88af2e8ee0c52f77836bd3c018f55fe4.tar.xz monzero-gui-6d03d63c88af2e8ee0c52f77836bd3c018f55fe4.zip | |
get_tx_key, get_tx_proof, tx_spend_proof async
Diffstat (limited to 'src/libwalletqt/Wallet.cpp')
| -rw-r--r-- | src/libwalletqt/Wallet.cpp | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp index 629106da..ff0ada14 100644 --- a/src/libwalletqt/Wallet.cpp +++ b/src/libwalletqt/Wallet.cpp @@ -662,6 +662,25 @@ QString Wallet::getTxKey(const QString &txid) const return QString::fromStdString(m_walletImpl->getTxKey(txid.toStdString())); } +void Wallet::getTxKeyAsync(const QString &txid, const QJSValue &ref) +{ + QFuture<QString> future = QtConcurrent::run(this, &Wallet::getTxKey, txid); + auto watcher = new QFutureWatcher<QString>(this); + + connect(watcher, &QFutureWatcher<QString>::finished, + this, [watcher, txid, ref]() { + QFuture<QString> future = watcher->future(); + watcher->deleteLater(); + + auto txKey = future.result(); + if (ref.isCallable()){ + QJSValue cb(ref); + cb.call(QJSValueList {txid, txKey}); + } + }); + watcher->setFuture(future); +} + QString Wallet::checkTxKey(const QString &txid, const QString &tx_key, const QString &address) { uint64_t received; @@ -680,6 +699,25 @@ QString Wallet::getTxProof(const QString &txid, const QString &address, const QS return QString::fromStdString(result); } +void Wallet::getTxProofAsync(const QString &txid, const QString &address, const QString &message, const QJSValue &ref) +{ + QFuture<QString> future = QtConcurrent::run(this, &Wallet::getTxProof, txid, address, message); + auto watcher = new QFutureWatcher<QString>(this); + + connect(watcher, &QFutureWatcher<QString>::finished, + this, [watcher, txid, ref]() { + QFuture<QString> future = watcher->future(); + watcher->deleteLater(); + + auto proof = future.result(); + if (ref.isCallable()){ + QJSValue cb(ref); + cb.call(QJSValueList {txid, proof}); + } + }); + watcher->setFuture(future); +} + QString Wallet::checkTxProof(const QString &txid, const QString &address, const QString &message, const QString &signature) { bool good; @@ -699,6 +737,25 @@ Q_INVOKABLE QString Wallet::getSpendProof(const QString &txid, const QString &me return QString::fromStdString(result); } +void Wallet::getSpendProofAsync(const QString &txid, const QString &message, const QJSValue &ref) +{ + QFuture<QString> future = QtConcurrent::run(this, &Wallet::getSpendProof, txid, message); + auto watcher = new QFutureWatcher<QString>(this); + + connect(watcher, &QFutureWatcher<QString>::finished, + this, [watcher, txid, ref]() { + QFuture<QString> future = watcher->future(); + watcher->deleteLater(); + + auto proof = future.result(); + if (ref.isCallable()){ + QJSValue cb(ref); + cb.call(QJSValueList {txid, proof}); + } + }); + watcher->setFuture(future); +} + Q_INVOKABLE QString Wallet::checkSpendProof(const QString &txid, const QString &message, const QString &signature) const { bool good; |
