mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Fixed the call to Transaction.create(): 2nd arg a list of tuples
This commit is contained in:
parent
65a54470a6
commit
2f6e8abac2
@ -193,7 +193,7 @@ def _run_load(tx_left, stats):
|
|||||||
b = bigchaindb.Bigchain()
|
b = bigchaindb.Bigchain()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
tx = Transaction.create([b.me], [b.me])
|
tx = Transaction.create([b.me], [([b.me], 1)])
|
||||||
tx = tx.sign([b.me_private])
|
tx = tx.sign([b.me_private])
|
||||||
b.write_transaction(tx)
|
b.write_transaction(tx)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user