Settable pending flag on nonce bootstrap
This commit is contained in:
parent
f66f93d867
commit
404aeebe5f
@ -1,3 +1,5 @@
|
|||||||
|
- 0.3.1
|
||||||
|
* Make pending flag for nonce at rpc bootstrap settable
|
||||||
- 0.3.0
|
- 0.3.0
|
||||||
* Implement arg handling from aiee
|
* Implement arg handling from aiee
|
||||||
* Implement value argument handling from aiee
|
* Implement value argument handling from aiee
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
class NonceOracle:
|
class NonceOracle:
|
||||||
|
|
||||||
def __init__(self, address):
|
def __init__(self, address, id_generator=None, confirmed=False):
|
||||||
self.address = address
|
self.address = address
|
||||||
self.nonce = self.get_nonce()
|
self.nonce = self.get_nonce(confirmed=confirmed)
|
||||||
|
|
||||||
|
|
||||||
def get_nonce(self):
|
def get_nonce(self):
|
||||||
|
@ -3,7 +3,7 @@ name=chainlib
|
|||||||
license=WTFPL2
|
license=WTFPL2
|
||||||
author_email=dev@holbrook.no
|
author_email=dev@holbrook.no
|
||||||
description=Generic blockchain access library and tooling
|
description=Generic blockchain access library and tooling
|
||||||
version=0.3.0
|
version=0.3.1
|
||||||
url=https://gitlab.com/chaintools/chainlib
|
url=https://gitlab.com/chaintools/chainlib
|
||||||
author=Louis Holbrook
|
author=Louis Holbrook
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user