You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While messages from a stream might normally need delineation, the length prefix of RLP makes delimiters redundant. Also, no delimiter can be valid for RLP. I am requesting a way to read complete rlp-encoded messages from a stream (eg sys.stdin).
Essentially it should work similar to asyncio.StreamReader.readline() but read an entire RLP message rather than a utf-8 line.
What feature should we add?
While messages from a stream might normally need delineation, the length prefix of RLP makes delimiters redundant. Also, no delimiter can be valid for RLP. I am requesting a way to read complete rlp-encoded messages from a stream (eg
sys.stdin
).Essentially it should work similar to
asyncio.StreamReader.readline()
but read an entire RLP message rather than a utf-8 line.Usage
The text was updated successfully, but these errors were encountered: