-
Notifications
You must be signed in to change notification settings - Fork 9
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
Feedback #14
base: master
Are you sure you want to change the base?
Feedback #14
Conversation
Alright, Ive coded up all of my suggestions, let me know if you disagree with anything :) |
Ok(Prototype::Data(len)) => { | ||
if strict { | ||
let payload_info = rlp_val.payload_info().map_decoder_error()?; | ||
let payload_info = rlp_val.payload_info().map_err(|err| err.to_py_err())?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mmh, the previous map_decoder_error()
looks a bit cleaner to me...
Thanks for the continued feedback! I'm going to look through it more thoroughly soon when my brain gets out of Python land again. |
It will take a little more time for me to figure out what's going on here. For now I've just left a few inline comments and made some minor changes.
Looks good overall