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

feat: change seal criteria for gateway #3320

Merged
merged 11 commits into from
Nov 27, 2024
Prev Previous commit
Next Next commit
fix aggregator to not wait for commit confirmation if sl=gateway
  • Loading branch information
perekopskiy committed Nov 22, 2024
commit 37bb0bdd45c49b686a4715833aafe86bbce256fc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl WiringLayer for EthTxAggregatorLayer {
let aggregator = Aggregator::new(
config.clone(),
object_store,
eth_client_blobs_addr.is_some(),
eth_client_blobs_addr.is_some() && !self.settlement_mode.is_gateway(),
self.l1_batch_commit_data_generator_mode,
);

Expand Down