mirror of
https://github.com/status-im/status-go.git
synced 2025-01-29 16:06:47 +00:00
fix_: conversion from int to string causes code scanning error (#5600)
fixes #5599
This commit is contained in:
parent
f6d7d1429c
commit
72baaebe39
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user