Skip to content
Merged
Show file tree
Hide file tree
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: 1 addition & 1 deletion crates/op-rbuilder/src/builders/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ impl OpPayloadBuilderCtx {
// Create and sign the transaction
let builder_tx =
signed_builder_tx(db, builder_tx_gas, message, signer, base_fee, chain_id)?;
Ok(op_alloy_flz::tx_estimated_size_fjord(
Ok(op_alloy_flz::data_gas_fjord(
builder_tx.encoded_2718().as_slice(),
))
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async fn data_availability_block_fill() -> eyre::Result<()> {
// Set block big enough so it could fit 3 transactions without tx size limit
let call = harness
.provider()?
.raw_request::<(i32, i32), bool>("miner_setMaxDASize".into(), (0, 100000000 * 3))
.raw_request::<(i32, i32), bool>("miner_setMaxDASize".into(), (0, 1600 * 3))
.await?;
assert!(call, "miner_setMaxDASize should be executed successfully");

Expand Down
2 changes: 1 addition & 1 deletion crates/op-rbuilder/src/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl MaybeInteropTransaction for FBPooledTransaction {

impl DataAvailabilitySized for FBPooledTransaction {
fn estimated_da_size(&self) -> u64 {
self.inner.estimated_da_size()
op_alloy_flz::data_gas_fjord(self.inner.encoded_2718())
}
}

Expand Down
Loading