File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,7 @@ def main() -> None:
7575 )
7676
7777 # wait that node is synced before trying to do anything
78- wait_prysm_ready (
79- interrupt_handler , BEACON_CHAIN_RPC_ENDPOINT , PROCESS_INTERVAL , logger
80- )
78+ wait_prysm_ready (interrupt_handler , BEACON_CHAIN_RPC_ENDPOINT , PROCESS_INTERVAL )
8179
8280 reward_token_total_rewards = RewardToken (
8381 w3 = web3_client , interrupt_handler = interrupt_handler
Original file line number Diff line number Diff line change 1111from eth_typing .evm import HexAddress
1212from google .protobuf import empty_pb2
1313from grpc import insecure_channel , RpcError , StatusCode
14- import loguru
1514from loguru import logger
1615from notifiers .core import get_notifier # type: ignore
1716from web3 import Web3
@@ -207,7 +206,6 @@ def wait_prysm_ready(
207206 interrupt_handler : InterruptHandler ,
208207 endpoint : str ,
209208 process_interval : int ,
210- logger : "loguru.Logger" ,
211209) -> None :
212210 """Wait that Prysm accepts requests and is synced.
213211
You can’t perform that action at this time.
0 commit comments