Skip to content

Commit

Permalink
Fix reward address error message
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Aug 10, 2020
1 parent 051c19d commit c761100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/ada/lib/storage/bridge/utils.js
Expand Up @@ -111,7 +111,7 @@ export function isValidReceiveAddress(
}
if (isCardanoHaskell(network)) {
if (kind === CoreAddressTypes.CARDANO_REWARD) {
return [false, messages.cannotSendToLegacy];
return [false, messages.cannotSendToReward];
}
if (isCardanoHaskellAddress(kind)) {
return true;
Expand Down

0 comments on commit c761100

Please sign in to comment.