mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 11:39:31 +00:00
Merge pull request #3267
90e9968d
main: get back "Sending transaction ..." splash (xiphon)
This commit is contained in:
commit
df771470c2
1 changed files with 2 additions and 0 deletions
2
main.qml
2
main.qml
|
@ -952,10 +952,12 @@ ApplicationWindow {
|
||||||
// Store to file
|
// Store to file
|
||||||
transaction.setFilename(path);
|
transaction.setFilename(path);
|
||||||
}
|
}
|
||||||
|
appWindow.showProcessingSplash(qsTr("Sending transaction ..."));
|
||||||
currentWallet.commitTransactionAsync(transaction);
|
currentWallet.commitTransactionAsync(transaction);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onTransactionCommitted(success, transaction, txid) {
|
function onTransactionCommitted(success, transaction, txid) {
|
||||||
|
hideProcessingSplash();
|
||||||
if (!success) {
|
if (!success) {
|
||||||
console.log("Error committing transaction: " + transaction.errorString);
|
console.log("Error committing transaction: " + transaction.errorString);
|
||||||
informationPopup.title = qsTr("Error") + translationManager.emptyString
|
informationPopup.title = qsTr("Error") + translationManager.emptyString
|
||||||
|
|
Loading…
Reference in a new issue