Fixed the call to Transaction.create(): 2nd arg a list of tuples

This commit is contained in:
troymc 2016-11-16 10:10:09 +01:00
parent 65a54470a6
commit 2f6e8abac2

View File

@ -193,7 +193,7 @@ def _run_load(tx_left, stats):
b = bigchaindb.Bigchain()
while True:
tx = Transaction.create([b.me], [b.me])
tx = Transaction.create([b.me], [([b.me], 1)])
tx = tx.sign([b.me_private])
b.write_transaction(tx)