Skip to content

Commit 4259454

Browse files
Merge pull request #12 from MWFIAE/patch-1
Fix runtime error caused by missing arguments in dispatcher
2 parents c5f798a + 0bb3694 commit 4259454

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

erdpy/dispatcher/transactions/queue.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ def dispatch_transactions(self, args):
137137
tx.get("value"),
138138
tx.get("data"),
139139
tx.get("gasPrice"),
140-
tx.get("gasLimit")
140+
tx.get("gasLimit"),
141+
tx.get("chain"),
142+
tx.get("version")
141143
)
142144
# increment nonce
143145
nonce += 1

0 commit comments

Comments
 (0)