Skip to content

Commit

Permalink
Add more comment (#827)
Browse files Browse the repository at this point in the history
* Add more comment

* Apply suggestions from code review

Co-authored-by: Bastian Köcher <git@kchr.de>

---------

Co-authored-by: ordian <write@reusable.software>
Co-authored-by: Bastian Köcher <git@kchr.de>
  • Loading branch information
3 people committed Feb 5, 2024
1 parent dbf46ba commit d5e9c1d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rlp/src/stream.rs
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

0 comments on commit d5e9c1d

Please sign in to comment.