fix(airdrop): fix wording of the error when selecting the wrong account (#16632)

Fixes #16562
This commit is contained in:
Jonathan Rainville 2024-10-30 11:45:20 -04:00 committed by GitHub
parent 03a0a18313
commit a466747c5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ QtObject {
return qsTr("Infura error")
if (airdropFeesResponse.errorCode === Constants.ComputeFeeErrorCode.Revert)
return qsTr("Estimation reverted. Make sure you are using the account that owns the TokenMaster or Owner Token.")
return qsTr("Estimation reverted. Make sure you selected the Wallet account that owns the TokenMaster or Owner Token.")
return qsTr("Unknown error")
}