(b [][]byte)
| 205 | } |
| 206 | |
| 207 | func asHexBytes(b [][]byte) []i10rjson.HexBytes { |
| 208 | var res []i10rjson.HexBytes |
| 209 | for _, item := range b { |
| 210 | res = append(res, item) |
| 211 | } |
| 212 | return res |
| 213 | } |
| 214 | |
| 215 | func asBytes(b []i10rjson.HexBytes) [][]byte { |
| 216 | var res [][]byte |
no outgoing calls
no test coverage detected