Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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):
|
||||
|
||||
Reference in New Issue
Block a user