Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rstormsf committed Jun 24, 2018
1 parent 4f85e0b commit 4ebc771
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stores/tokenStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ class TokenStore {
@action
parseAddresses(){
const newAddresses = []
this.addresses_to_send = []
this.totalBalance = 0;
this.invalid_addresses = [];
this.jsonAddresses.forEach((account) => {
const address = Object.keys(account)[0].replace(/\s/g, "");;
if(!Web3Utils.isAddress(address)){
Expand Down

0 comments on commit 4ebc771

Please sign in to comment.