s/txes/txs/g

This commit is contained in:
libscott 2017-01-23 14:38:30 +01:00 committed by GitHub
parent a5acd0c7b9
commit 23ba642d2c

View File

@ -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.