aboutsummaryrefslogtreecommitdiff
path: root/src/qt/sendcoinsdialog.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2013-12-16 09:46:55 +0100
committerWladimir J. van der Laan <[email protected]>2013-12-16 09:46:55 +0100
commit4a61c39456b553f7de8ccc019276d40aff10dac0 (patch)
tree9cd224195e4cc38973792da6aa12117e59070d13 /src/qt/sendcoinsdialog.cpp
parentRemove unused ThreadSafeAskFee from ui_interface (diff)
downloaddiscoin-4a61c39456b553f7de8ccc019276d40aff10dac0.tar.xz
discoin-4a61c39456b553f7de8ccc019276d40aff10dac0.zip
qt: status WalletModel::Aborted is no longer used
Aborting transactions happens in the GUI now as it should, not the backend.
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
-rw-r--r--src/qt/sendcoinsdialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp
index 03cf7f51e..4bf5c3c47 100644
--- a/src/qt/sendcoinsdialog.cpp
+++ b/src/qt/sendcoinsdialog.cpp
@@ -452,9 +452,8 @@ void SendCoinsDialog::processSendCoinsReturn(const WalletModel::SendCoinsReturn
msgParams.first = tr("The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
msgParams.second = CClientUIInterface::MSG_ERROR;
break;
- // OK and Aborted are included to prevent a compiler warning.
+ // included to prevent a compiler warning.
case WalletModel::OK:
- case WalletModel::Aborted:
default:
return;
}