Removing int wrapping for call to property since unnecessary.

pull/3531/head
derekpierre 2024-07-26 13:12:02 -04:00
parent a0f21e8f4d
commit d71f259b01
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class EthereumClient:
self.add_middleware(RetryRequestMiddleware)
# poa middleware
chain_id = int(self.chain_id)
chain_id = self.chain_id
is_poa = chain_id in POA_CHAINS
self.log.debug(