0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

qt, wallet, refactor: Drop unused WalletModel::PaymentRequestExpired

Also dead code has been removed.
This commit is contained in:
Hennadii Stepanov 2022-05-29 17:56:21 +02:00
parent ba48fcf4a4
commit 151009cf76
No known key found for this signature in database
GPG key ID: 410108112E7EA81F
2 changed files with 1 additions and 6 deletions

View file

@ -757,10 +757,6 @@ void SendCoinsDialog::processSendCoinsReturn(const WalletModel::SendCoinsReturn
case WalletModel::AbsurdFee:
msgParams.first = tr("A fee higher than %1 is considered an absurdly high fee.").arg(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), model->wallet().getDefaultMaxTxFee()));
break;
case WalletModel::PaymentRequestExpired:
msgParams.first = tr("Payment request expired.");
msgParams.second = CClientUIInterface::MSG_ERROR;
break;
// included to prevent a compiler warning.
case WalletModel::OK:
default:

View file

@ -66,8 +66,7 @@ public:
AmountWithFeeExceedsBalance,
DuplicateAddress,
TransactionCreationFailed, // Error returned when wallet is still locked
AbsurdFee,
PaymentRequestExpired
AbsurdFee
};
enum EncryptionStatus