-
Notifications
You must be signed in to change notification settings - Fork 249
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
feat: specialized geth tracer #1739
Conversation
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.
nits
crates/provider/src/ext/debug.rs
Outdated
/// # Note | ||
/// | ||
/// Not all nodes support this call. | ||
async fn debug_trace_transaction_as<Z>( |
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.
async fn debug_trace_transaction_as<Z>( | |
async fn debug_trace_transaction_as<T>( |
crates/provider/src/ext/debug.rs
Outdated
&self, | ||
hash: TxHash, | ||
trace_options: GethDebugTracingOptions, | ||
) -> TransportResult<Z> |
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.
) -> TransportResult<Z> | |
) -> TransportResult<T> |
crates/provider/src/ext/debug.rs
Outdated
trace_options: GethDebugTracingOptions, | ||
) -> TransportResult<Z> | ||
where | ||
Z: RpcReturn + serde::de::DeserializeOwned; |
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.
Z: RpcReturn + serde::de::DeserializeOwned; | |
T: RpcReturn; |
Motivation
Closes #1728 (comment)
closes #1738
Solution
PR Checklist