From 9a3c0841075744cb3b6640fcaaa0b88f86e252a8 Mon Sep 17 00:00:00 2001 From: z-bowen Date: Mon, 10 Sep 2018 17:03:11 +0200 Subject: [PATCH] Problem: `store_election_results` parameter is still named `validator_update` Solution: Renamed to `election` --- bigchaindb/backend/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/backend/query.py b/bigchaindb/backend/query.py index 2da36bd5..d8f60320 100644 --- a/bigchaindb/backend/query.py +++ b/bigchaindb/backend/query.py @@ -352,7 +352,7 @@ def store_validator_set(conn, validator_update): @singledispatch -def store_election_results(conn, validator_update): +def store_election_results(conn, election): """Store election results""" raise NotImplementedError