Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more comment #827

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions rlp/src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ impl RlpStream {
_ => {
// payload is longer than 1 byte only for lists > 55 bytes
// by pushing always this 1 byte we may avoid unnecessary shift of data
// both cases will need at least 1 byte header, so we push 1 byte
// and then, when we know the exactly size of data, the value will be updated
// accordingly in `insert_list_payload` method.
self.buffer.put_u8(0);

let position = self.total_written();
Expand Down
Loading