Skip to content

Commit

Permalink
fix: changed coin denom
Browse files Browse the repository at this point in the history
  • Loading branch information
fbac committed Sep 25, 2024
1 parent b532de2 commit eeff21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion precompiles/bank/coin.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// ZRC20ToCosmosDenom returns the cosmos coin address for a given ZRC20 address.
// This is converted to "zevm/{ZRC20Address}".
func ZRC20ToCosmosDenom(ZRC20Address common.Address) string {
return ZEVMDenom + ZRC20Address.String()
return ZRC20DenomPrefix + ZRC20Address.String()
}

func createCoinSet(tokenDenom string, amount *big.Int) (sdk.Coins, error) {
Expand Down

0 comments on commit eeff21c

Please sign in to comment.