From 23ba642d2cb571859bdce11543876ade0ee9eeff Mon Sep 17 00:00:00 2001 From: libscott Date: Mon, 23 Jan 2017 14:38:30 +0100 Subject: [PATCH] s/txes/txs/g --- bigchaindb/web/views/transactions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigchaindb/web/views/transactions.py b/bigchaindb/web/views/transactions.py index a2b6cd30..3059b34f 100644 --- a/bigchaindb/web/views/transactions.py +++ b/bigchaindb/web/views/transactions.py @@ -61,9 +61,9 @@ class TransactionListApi(Resource): args = parser.parse_args() with current_app.config['bigchain_pool']() as bigchain: - txes = bigchain.get_transactions_filtered(**args) + txs = bigchain.get_transactions_filtered(**args) - return [tx.to_dict() for tx in txes] + return [tx.to_dict() for tx in txs] def post(self): """API endpoint to push transactions to the Federation.