From 7ab6ed448b8bc340ce67e1fe739586e3b2011758 Mon Sep 17 00:00:00 2001 From: hweawer Date: Fri, 11 Oct 2024 11:03:55 +0200 Subject: [PATCH] fix --- tests/fixtures/provider.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fixtures/provider.py b/tests/fixtures/provider.py index 2018d3c1..3a26e27e 100644 --- a/tests/fixtures/provider.py +++ b/tests/fixtures/provider.py @@ -2,6 +2,7 @@ from unittest.mock import Mock import pytest +import variables from blockchain.web3_extentions.lido_contracts import LidoContracts from blockchain.web3_extentions.transaction import TransactionUtils from web3 import HTTPProvider, Web3 @@ -30,7 +31,7 @@ def web3_provider_integration(request) -> Web3: with anvil_fork( os.getenv('ANVIL_PATH', ''), - 'https://gnosis-chiado-rpc.publicnode.com', + variables.WEB3_RPC_ENDPOINTS[0], block_num, ): yield Web3(HTTPProvider('http://127.0.0.1:8545', request_kwargs={'timeout': 3600}))