Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
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: 2 additions & 1 deletion crates/builder/src/tasks/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ impl SubmitTask {
let tx = self
.build_blob_tx(header, v, r, s, in_progress)?
.with_from(self.provider.default_signer_address())
.with_to(self.config.zenith_address);
.with_to(self.config.zenith_address)
.with_gas_limit(1_000_000);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good enough for government work


if let Err(TransportError::ErrorResp(e)) =
self.provider.call(&tx).block(BlockNumberOrTag::Pending.into()).await
Expand Down