diff --git a/services/wallet/common/const.go b/services/wallet/common/const.go index 9d819b3e0..fa7dc817f 100644 --- a/services/wallet/common/const.go +++ b/services/wallet/common/const.go @@ -44,7 +44,7 @@ const ( ) func (c ChainID) String() string { - return strconv.Itoa(int(c)) + return strconv.FormatUint(uint64(c), 10) } func (c ChainID) IsMainnet() bool {