moto-flash-data/common/address.go
2025-01-20 14:36:21 +01:00

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
}