You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added drop impl to clean up after tests
Changed revert tests a bit
fmt
Add txpool test
Fix DA config, set it via miner
Extend tests
Add op-alloy-flz dependency and update related configurations
- Added `op-alloy-flz` as a dependency in `Cargo.toml` and `Cargo.lock`.
- Configured `op-alloy-flz` to be part of the workspace in `op-rbuilder`'s `Cargo.toml`.
- Updated the `payload_builder_vanilla.rs` to utilize `op-alloy-flz` for transaction size estimation.
- Enhanced test framework to include new data availability tests ensuring block size limits are respected.
Add max data availability transaction and block size configuration
- Introduced `max_da_tx_size` and `max_da_block_size` fields in `TestHarnessBuilder` and `OpRbuilderConfig`.
- Added builder methods `with_max_da_tx_size` and `with_max_da_block_size` for setting these values.
- Implemented a new test to ensure transaction size limits are respected in data availability scenarios.
- Updated test module to include the new data availability test.
Add cumulative_da_bytes_used accur
Add da config
Use correct DA transaction compression
* conflict changes
Copy file name to clipboardExpand all lines: crates/op-rbuilder/src/primitives/reth/execution.rs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
//! Heavily influenced by [reth](https://github.com/paradigmxyz/reth/blob/1e965caf5fa176f244a31c0d2662ba1b590938db/crates/optimism/payload/src/builder.rs#L570)
2
-
use alloy_consensus::Transaction;
3
-
use alloy_primitives::{private::alloy_rlp::Encodable,Address,U256};
2
+
use alloy_primitives::{Address,U256};
4
3
use core::fmt::Debug;
5
4
use reth_optimism_primitives::{OpReceipt,OpTransactionSigned};
0 commit comments