Files
opentimestamps/util.go
2023-09-18 16:29:42 -03:00

12 lines
167 B
Go

package opentimestamps
import "encoding/hex"
func mustDecodeHex(in string) []byte {
out, err := hex.DecodeString(in)
if err != nil {
panic(err)
}
return out
}