test_read_transaction_invalid_block didn't need to write tx to backlog

This commit is contained in:
troymc 2016-11-05 17:30:48 +01:00
parent 191c60ce37
commit e81283fee9

View File

@ -245,7 +245,7 @@ class TestBigchainApi(object):
inputs = input_tx.to_inputs()
tx = Transaction.transfer(inputs, [user_vk], input_tx.asset)
tx = tx.sign([user_sk])
b.write_transaction(tx)
# There's no need to b.write_transaction(tx) to the backlog
# create block
block = b.create_block([tx])