We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
we only recently introduced RecoveryErr
RecoveryErr
reth/crates/primitives-traits/src/transaction/signed.rs
Line 87 in 21761ad
but kept the function that return an option
Line 79 in 21761ad
Line 65 in 21761ad
Option<Address>
Result<Address, RecoveryErr>
update error handling, such as:
reth/crates/rpc/rpc-eth-types/src/receipt.rs
Line 25 in 21761ad
which can then use the ? operator if we add a From<RecoveryErr> impl for EthApiError for example
?
From<RecoveryErr>
EthApiError
No response
The text was updated successfully, but these errors were encountered:
hi sir, i can do it
Sorry, something went wrong.
hoank101
Successfully merging a pull request may close this issue.
Describe the feature
we only recently introduced
RecoveryErr
reth/crates/primitives-traits/src/transaction/signed.rs
Line 87 in 21761ad
but kept the function that return an option
reth/crates/primitives-traits/src/transaction/signed.rs
Line 79 in 21761ad
reth/crates/primitives-traits/src/transaction/signed.rs
Line 65 in 21761ad
TODO
Option<Address>
withResult<Address, RecoveryErr>
update error handling, such as:
reth/crates/rpc/rpc-eth-types/src/receipt.rs
Line 25 in 21761ad
which can then use the
?
operator if we add aFrom<RecoveryErr>
impl forEthApiError
for exampleAdditional context
No response
The text was updated successfully, but these errors were encountered: