(s string)
| 9 | ) |
| 10 | |
| 11 | func hexToBytes(s string) []byte { |
| 12 | b, err := hex.DecodeString(s) |
| 13 | if err != nil { |
| 14 | panic("invalid hex in source file: " + s) |
| 15 | } |
| 16 | return b |
| 17 | } |
| 18 | |
| 19 | func TestGetScriptNum(t *testing.T) { |
| 20 | t.Parallel() |
no outgoing calls
no test coverage detected