mirror of https://github.com/status-im/nim-eth.git
8 lines
151 B
Nim
8 lines
151 B
Nim
|
import os, ../../rlp
|
||
|
|
||
|
if paramCount() > 0:
|
||
|
echo rlpFromHex(paramStr(1)).inspect
|
||
|
else:
|
||
|
echo "Please provide an hex-encoded RLP string as an input"
|
||
|
|