From e81283fee9d695933e0525590fc3350a64f35b38 Mon Sep 17 00:00:00 2001 From: troymc Date: Sat, 5 Nov 2016 17:30:48 +0100 Subject: [PATCH] test_read_transaction_invalid_block didn't need to write tx to backlog --- tests/db/test_bigchain_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/db/test_bigchain_api.py b/tests/db/test_bigchain_api.py index f0a88c44..8c096d34 100644 --- a/tests/db/test_bigchain_api.py +++ b/tests/db/test_bigchain_api.py @@ -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])