Skip to content

Commit 4826ffc

Browse files
FrancoCROHuangYi
andauthored
Fix denom (symbol) (#179)
* Fix denom (symbol) * update ModuleCRC20.json Co-authored-by: HuangYi <huang@crypto.com>
1 parent 9e55247 commit 4826ffc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

contracts/src/ModuleCRC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contract ModuleCRC20 is DSToken {
1010
event __CronosSendToEthereum(address recipient, uint256 amount, uint256 bridge_fee);
1111
event __CronosSendToIbc(address sender, string recipient, uint256 amount);
1212

13-
constructor(string memory denom_, uint8 decimals_) DSToken(denom) public {
13+
constructor(string memory denom_, uint8 decimals_) DSToken(denom_) public {
1414
decimals = decimals_;
1515
denom = denom_;
1616
}

0 commit comments

Comments
 (0)