Skip to content

Commit

Permalink
Merge pull request #103 from TokenMarketNet/feat/centrallyissuedtoken…
Browse files Browse the repository at this point in the history
…-fix

CentrallyIssuedToken: Permitting token information change more than once
  • Loading branch information
miohtama committed Jan 10, 2018
2 parents 9e150dc + 0ac0764 commit 4d75f15
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions contracts/CentrallyIssuedToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,6 @@ contract CentrallyIssuedToken is BurnableToken, UpgradeableToken {
throw;
}

if(bytes(name).length > 0 || bytes(symbol).length > 0) {
// Information already set
// Allow owner to set this information only once
throw;
}

name = _name;
symbol = _symbol;
UpdatedTokenInformation(name, symbol);
Expand Down

0 comments on commit 4d75f15

Please sign in to comment.