mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
10 lines
159 B
Nim
10 lines
159 B
Nim
import
|
|
std/os,
|
|
../../rlp
|
|
|
|
if paramCount() > 0:
|
|
echo rlpFromHex(paramStr(1)).inspect
|
|
else:
|
|
echo "Please provide an hex-encoded RLP string as an input"
|
|
|