Skip to content
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

EVM Remove #501 todos #849

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions module-system/module-implementations/sov-evm/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,8 @@ impl<C: sov_modules_api::Context> Evm<C> {
#[rpc_method(name = "call")]
pub fn get_call(
&self,
// TODO https://github.com/Sovereign-Labs/sovereign-sdk/issues/501
request: reth_rpc_types::CallRequest,
_block_number: Option<reth_primitives::BlockId>,
// TODO https://github.com/Sovereign-Labs/sovereign-sdk/issues/501
_state_overrides: Option<reth_rpc_types::state::StateOverride>,
_block_overrides: Option<Box<reth_rpc_types::BlockOverrides>>,
working_set: &mut WorkingSet<C::Storage>,
Expand All @@ -157,7 +155,6 @@ impl<C: sov_modules_api::Context> Evm<C> {
#[rpc_method(name = "sendTransaction")]
pub fn send_transaction(
&self,
// TODO https://github.com/Sovereign-Labs/sovereign-sdk/issues/501
_request: reth_rpc_types::TransactionRequest,
_working_set: &mut WorkingSet<C::Storage>,
) -> RpcResult<reth_primitives::U256> {
Expand Down