qt: status WalletModel::Aborted is no longer used
Aborting transactions happens in the GUI now as it should, not the backend.
This commit is contained in:
@@ -75,8 +75,7 @@ public:
|
||||
AmountWithFeeExceedsBalance,
|
||||
DuplicateAddress,
|
||||
TransactionCreationFailed, // Error returned when wallet is still locked
|
||||
TransactionCommitFailed,
|
||||
Aborted
|
||||
TransactionCommitFailed
|
||||
};
|
||||
|
||||
enum EncryptionStatus
|
||||
@@ -103,7 +102,7 @@ public:
|
||||
// Return status record for SendCoins, contains error id + information
|
||||
struct SendCoinsReturn
|
||||
{
|
||||
SendCoinsReturn(StatusCode status = Aborted):
|
||||
SendCoinsReturn(StatusCode status = OK):
|
||||
status(status) {}
|
||||
StatusCode status;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user