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
|
||||
* Implement arg handling from aiee
|
||||
* Implement value argument handling from aiee
|
||||
|
@ -1,8 +1,8 @@
|
||||
class NonceOracle:
|
||||
|
||||
def __init__(self, address):
|
||||
def __init__(self, address, id_generator=None, confirmed=False):
|
||||
self.address = address
|
||||
self.nonce = self.get_nonce()
|
||||
self.nonce = self.get_nonce(confirmed=confirmed)
|
||||
|
||||
|
||||
def get_nonce(self):
|
||||
|
Loading…
Reference in New Issue
Block a user