Merge pull request #2603 from vepkenez/turboencabulator

attempt potential fix of #2602 by removing chainID from tx.build_payload
pull/2607/head
KPrasch 2021-03-22 11:09:46 -07:00 committed by GitHub
commit 74ae22a25c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Support geth 1.10.x - Remove chainID from transaction payloads.

View File

@ -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}