mirror of
https://github.com/status-im/nim-eth.git
synced 2025-02-04 18:34:23 +00:00
762415319c
* Add build_dcli target and add it to CI * Fix local imports for dcli * And use local imports for all other files too * Use local imports in tests and rlpx protocols
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"
|
|
|