mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-12 06:57:34 +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
|