commit eb0162fc9a6db49fda3c8865700eab3d440bd4dc
parent 65af3c9e32e7f8e6b518d5127a10a9cc5f556db5
Author: nolash <dev@holbrook.no>
Date: Mon, 15 Feb 2021 19:27:06 +0100
Replace placeholder nonce even if not used
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/chainlib/eth/tx.py b/chainlib/eth/tx.py
@@ -135,7 +135,7 @@ class TxFactory:
if self.nonce_oracle != None and use_nonce:
nonce = self.nonce_oracle.next()
logg.debug('using nonce {} for address {}'.format(nonce, sender))
- o['nonce'] = nonce
+ o['nonce'] = nonce
return o
diff --git a/setup.cfg b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = chainlib
-version = 0.0.1a9
+version = 0.0.1a10
description = Generic blockchain access library and tooling
author = Louis Holbrook
author_email = dev@holbrook.no