Merge pull request #824 from bigchaindb/bug/823/fix-bigchaindb-load

Fixed bug in `bigchaindb load`
This commit is contained in:
Troy McConaghy 2016-11-16 16:13:59 +01:00 committed by GitHub
commit 795467c0f2

View File

@ -1,6 +1,5 @@
"""Implementation of the `bigchaindb` command,
which is one of the commands in the BigchainDB
command-line interface.
the command-line interface (CLI) for BigchainDB Server.
"""
import os
@ -194,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)