Don't share objects between TestInstances

This commit is contained in:
Casey Rodarmor 2015-07-22 12:03:16 -04:00 committed by Jack Grigg
parent 72b25b0ffd
commit df8f8095b6
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@ class TestNode(NodeConnCB):
# or false, then only the last tx is tested against outcome.)
class TestInstance(object):
def __init__(self, objects=[], sync_every_block=True, sync_every_tx=False):
self.blocks_and_transactions = objects
def __init__(self, objects=None, sync_every_block=True, sync_every_tx=False):
self.blocks_and_transactions = objects if objects else []
self.sync_every_block = sync_every_block
self.sync_every_tx = sync_every_tx