Skip to content

Commit

Permalink
Add secondary subaddress syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Pierce committed Jul 20, 2019
1 parent b75fd05 commit 7e88a49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/identicon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ export default {
case "UmV":
return input.length === 97
case "UmW":
return input.length === 97
default:
return false
}
Expand Down
3 changes: 3 additions & 0 deletions src/validators/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export const address = (input) => {
case "UmV":
return input.length === 97

case "UmW":
return input.length === 97

default:
return false
}
Expand Down

0 comments on commit 7e88a49

Please sign in to comment.