mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-17 18:40:09 +00:00
Merge pull request #6465
56b28fc Don't share objects between TestInstances (Casey Rodarmor)
This commit is contained in:
commit
410fd7448a
@ -122,8 +122,8 @@ class TestNode(NodeConnCB):
|
|||||||
# or false, then only the last tx is tested against outcome.)
|
# or false, then only the last tx is tested against outcome.)
|
||||||
|
|
||||||
class TestInstance(object):
|
class TestInstance(object):
|
||||||
def __init__(self, objects=[], sync_every_block=True, sync_every_tx=False):
|
def __init__(self, objects=None, sync_every_block=True, sync_every_tx=False):
|
||||||
self.blocks_and_transactions = objects
|
self.blocks_and_transactions = objects if objects else []
|
||||||
self.sync_every_block = sync_every_block
|
self.sync_every_block = sync_every_block
|
||||||
self.sync_every_tx = sync_every_tx
|
self.sync_every_tx = sync_every_tx
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user