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
network, json-rpc, serde
alloy v0.4.2
Linux
We get the following serde error missing field 'status' when we try to get old transaction receipts e.g. 0xea1093d492a1dcb1bef708f771a99a96ff05dcab81ca76c31940300177fcf49f.
missing field 'status'
Step to reproduce :
let provider = ProviderBuilder::new().on_http("https://rpc.ankr.com/eth".parse()?); let receipt = provider .get_transaction_receipt(b256!( "ea1093d492a1dcb1bef708f771a99a96ff05dcab81ca76c31940300177fcf49f" )) .await?; println!("{receipt:?}");
The text was updated successfully, but these errors were encountered:
rpc-types-eth
Successfully merging a pull request may close this issue.
Component
network, json-rpc, serde
What version of Alloy are you on?
alloy v0.4.2
Operating System
Linux
Describe the bug
We get the following serde error
missing field 'status'
when we try to get old transaction receipts e.g. 0xea1093d492a1dcb1bef708f771a99a96ff05dcab81ca76c31940300177fcf49f.Step to reproduce :
The text was updated successfully, but these errors were encountered: