diff --git a/.github/workflows/pr-main_l2.yaml b/.github/workflows/pr-main_l2.yaml
index d19cc4ae47..227578202c 100644
--- a/.github/workflows/pr-main_l2.yaml
+++ b/.github/workflows/pr-main_l2.yaml
@@ -326,9 +326,6 @@ jobs:
- name: Run test
run: |
- if [ "${{ matrix.based }}" = true ]; then
- export INTEGRATION_TEST_SKIP_BASE_FEE_VAULT_CHECK=true
- fi
sudo chmod -R a+rw crates/l2
cd crates/l2
RUST_LOG=info,ethrex_prover_lib=debug make init-prover-exec &
@@ -560,7 +557,6 @@ jobs:
tail -n 100 -f /tmp/ethrex.log &
tail -n 100 -f /tmp/prover.log &
export $(shell cat .env | xargs); \
- INTEGRATION_TEST_SKIP_BASE_FEE_VAULT_CHECK=true \
PROPOSER_COINBASE_ADDRESS=0x0007a881CD95B1484fca47615B64803dad620C8d \
cargo test l2 --release -- --nocapture --test-threads=1
diff --git a/crates/l2/networking/rpc/clients.rs b/crates/l2/networking/rpc/clients.rs
index 170e7b91ac..386fd58b4a 100644
--- a/crates/l2/networking/rpc/clients.rs
+++ b/crates/l2/networking/rpc/clients.rs
@@ -4,6 +4,7 @@ use ethrex_common::H256;
use ethrex_common::U256;
use ethrex_l2_common::l1_messages::L1MessageProof;
use ethrex_rpc::clients::eth::errors::GetL1BlobBaseFeeRequestError;
+use ethrex_rpc::clients::eth::errors::GetL1FeeVaultAddressError;
use ethrex_rpc::clients::eth::errors::GetOperatorFeeError;
use ethrex_rpc::clients::eth::errors::GetOperatorFeeVaultAddressError;
use ethrex_rpc::types::block_identifier::BlockIdentifier;
@@ -57,7 +58,7 @@ pub async fn get_batch_by_number(
pub async fn get_base_fee_vault_address(
client: &EthClient,
block: BlockIdentifier,
-) -> Result
{
+) -> Result