(s string)
| 28 | } |
| 29 | |
| 30 | func MustParseHexStr(s string) []byte { |
| 31 | result, err := hex.DecodeString(s) |
| 32 | if err != nil { |
| 33 | panic(err) |
| 34 | } |
| 35 | return result |
| 36 | } |
| 37 | |
| 38 | func NewTrace() string { |
| 39 | randomBytes := make([]byte, 16+8) |
no outgoing calls
no test coverage detected