go-waku/waku/v2/utils/hex.go

12 lines
182 B
Go
Raw Normal View History

2022-09-14 19:19:04 +00:00
package utils
import (
"encoding/hex"
"strings"
)
func DecodeHexString(input string) ([]byte, error) {
input = strings.TrimPrefix(input, "0x")
return hex.DecodeString(input)
}