Skip to content

Commit 0e0f770

Browse files
committed
Update clients.py
1 parent c999b38 commit 0e0f770

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/sdk/utils/clients.py

-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ async def populated_transaction(
3535
transaction_payload = {
3636
"nonce": nonce,
3737
"from": account,
38-
# "chainId": self.chain_id,
3938
}
4039

4140
if value is not None:
@@ -48,11 +47,9 @@ class WalletClient(PublicClient):
4847
def __init__(
4948
self,
5049
rpc_url: str,
51-
chain_id: int,
5250
private_key: str,
5351
):
5452
super().__init__(rpc_url)
55-
self.chain_id = chain_id
5653
self.account = self.w3.eth.account.from_key(private_key)
5754

5855
async def populated_transaction(

0 commit comments

Comments
 (0)