mirror of
https://github.com/status-im/nim-eth.git
synced 2025-01-12 23:34:16 +00:00
15 lines
243 B
Nim
15 lines
243 B
Nim
import
|
|
stew/bitseqs, ../rlp
|
|
|
|
type
|
|
Bytes = seq[byte]
|
|
|
|
proc read*(rlp: var Rlp, T: type BitSeq): T {.inline.} =
|
|
T read(rlp, Bytes)
|
|
|
|
proc append*(writer: var RlpWriter, value: BitSeq) =
|
|
append(writer, Bytes(value))
|
|
|
|
export
|
|
bitseqs, rlp
|