mirror of
https://github.com/status-im/nim-contract-abi.git
synced 2025-02-23 07:58:12 +00:00
8 lines
211 B
Nim
8 lines
211 B
Nim
|
import std/sequtils
|
||
|
import pkg/stew/byteutils
|
||
|
import ./encoding
|
||
|
|
||
|
func debugEcho*(_: type AbiEncoder, encoding: seq[byte]) =
|
||
|
for line in encoding.distribute(encoding.len div 32):
|
||
|
debugEcho "0x", line.toHex
|