1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 06:48:16 +00:00

stellar: typo in failure message

This commit is contained in:
Tomas Susanka 2018-12-04 10:04:16 +01:00
parent b1725e7264
commit b51f995da7

View File

@ -204,7 +204,7 @@ bool stellar_confirmCreateAccountOp(const StellarCreateAccountOp *msg)
// Validate new account and convert to bytes
uint8_t new_account_bytes[STELLAR_KEY_SIZE];
if (!stellar_getAddressBytes(msg->new_account, new_account_bytes)) {
stellar_signingAbort(_("Invalid destination account"));
stellar_signingAbort(_("Invalid new account address"));
return false;
}