Skip to content

Commit

Permalink
Merge pull request #214 from debridge-finance/feature/remove-de
Browse files Browse the repository at this point in the history
removed "de" from token symbol
  • Loading branch information
artyukh authored Jul 19, 2023
2 parents f9c6cc9 + 30319d5 commit 17e99de
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions contracts/periphery/DeBridgeToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ contract DeBridgeToken is
address[] memory minters
) public initializer {
_decimals = decimals_;
name_ = string(abi.encodePacked("deBridge ",
bytes(name_).length == 0 ? symbol_ : name_));
symbol_ = string(abi.encodePacked("de", symbol_));

name_ = bytes(name_).length == 0 ? symbol_ : name_;
__ERC20_init_unchained(name_, symbol_);

_setupRole(DEFAULT_ADMIN_ROLE, admin);
Expand Down

0 comments on commit 17e99de

Please sign in to comment.