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

wip: from addresses for eth_estimateGas #4588

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
2 changes: 2 additions & 0 deletions rust/main/agents/relayer/src/msg/op_submitter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use std::sync::Arc;
use std::time::Duration;

use derive_new::new;
// use ethers::types::H256;
use futures::future::join_all;
use futures_util::future::try_join_all;
use hyperlane_core::total_estimated_cost;
Expand Down Expand Up @@ -243,6 +244,7 @@ async fn prepare_task(
confirm_queue: OpQueue,
max_batch_size: u32,
metrics: SerialSubmitterMetrics,
// from_address: H256,
) {
// Prepare at most `max_batch_size` ops at a time to avoid getting rate-limited
let ops_to_prepare = max_batch_size as usize;
Expand Down
Loading