Respect gas_limit from validator registration

This commit is contained in:
Pawan Dhananjay
2025-01-17 11:47:49 -08:00
parent a8286ab0a3
commit 1f7b4a327e
2 changed files with 133 additions and 63 deletions

View File

@@ -664,7 +664,7 @@ pub struct BeaconChainHarness<T: BeaconChainTypes> {
pub runtime: TestRuntime,
pub mock_execution_layer: Option<MockExecutionLayer<T::EthSpec>>,
pub mock_builder: Option<Arc<MockBuilder<T::EthSpec>>>,
pub mock_builder: Option<Arc<MockBuilder<T::EthSpec, T::SlotClock>>>,
pub rng: Mutex<StdRng>,
}
@@ -722,6 +722,7 @@ where
mock_el_url,
beacon_url,
self.spec.clone(),
self.chain.slot_clock.clone(),
self.runtime.task_executor.clone(),
);