mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-05 23:43:05 +00:00
12 lines
182 B
Go
12 lines
182 B
Go
package utils
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"strings"
|
|
)
|
|
|
|
func DecodeHexString(input string) ([]byte, error) {
|
|
input = strings.TrimPrefix(input, "0x")
|
|
return hex.DecodeString(input)
|
|
}
|