mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 12:01:20 +00:00
12 lines
275 B
Markdown
12 lines
275 B
Markdown
|
## rlp
|
||
|
|
||
|
|
||
|
TERMINOLOGY:
|
||
|
|
||
|
```
|
||
|
RLP string = "Blob" // this is so we don't conflict with existing go name for String
|
||
|
RLP list = "List" // luckily we can keep using list name since go doesn't use it
|
||
|
RLP single byte number = "Decimal" // for numbers from 1-127. a special case
|
||
|
```
|
||
|
|