mirror of https://github.com/nucypher/nucypher.git
Merge pull request #2603 from vepkenez/turboencabulator
attempt potential fix of #2602 by removing chainID from tx.build_payloadpull/2607/head
commit
74ae22a25c
|
@ -0,0 +1 @@
|
|||
Support geth 1.10.x - Remove chainID from transaction payloads.
|
|
@ -465,7 +465,7 @@ class BlockchainInterface:
|
|||
) -> dict:
|
||||
|
||||
nonce = self.client.get_transaction_count(account=sender_address, pending=use_pending_nonce)
|
||||
base_payload = {'chainId': int(self.client.chain_id),
|
||||
base_payload = {
|
||||
'nonce': nonce,
|
||||
'from': sender_address}
|
||||
|
||||
|
|
Loading…
Reference in New Issue