11 lines
232 B
Go
11 lines
232 B
Go
package common
|
|
|
|
import "strconv"
|
|
|
|
func ParseStringHexAddress(hexAddress string) (res uint64, err error) {
|
|
parsedValue, err := strconv.ParseUint(hexAddress[2:], 16, 32)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return parsedValue, nil
|
|
}
|