Problem: Missed a method in Bigchain class when updating the naming for an election method

Solution: Finished the refactoring
This commit is contained in:
z-bowen 2018-09-04 11:12:51 +02:00
parent bd76b31e40
commit b468504bfc

View File

@ -429,7 +429,7 @@ class BigchainDB(object):
validators = result['validators'] validators = result['validators']
return validators return validators
def get_result_by_election_id(self, election_id, table): def get_election_result_by_id(self, election_id, table):
result = backend.query.get_election_result_by_id(self.connection, election_id, table) result = backend.query.get_election_result_by_id(self.connection, election_id, table)
return result return result