Function
unhexlify
docs/development/custom-vectors/arc4/verify_arc4.go:14–20
· docs/development/custom-vectors/arc4/verify_arc4.go::unhexlify
(s string)
Source from the content-addressed store, hash-verified
| 12 | ) |
| 13 | |
| 14 | func unhexlify(s string) []byte { |
| 15 | bytes, err := hex.DecodeString(s) |
| 16 | if err != nil { |
| 17 | panic(err) |
| 18 | } |
| 19 | return bytes |
| 20 | } |
| 21 | |
| 22 | type vectorArgs struct { |
| 23 | count string |
Tested by
no test coverage detected