mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Problem: Doc strings missing
Solution: Add doc string for store_validato_set
This commit is contained in:
parent
142ffd47fb
commit
555612ff4c
@ -9,7 +9,6 @@ from bigchaindb.backend.utils import module_dispatch_registrar
|
|||||||
from bigchaindb.backend.localmongodb.connection import LocalMongoDBConnection
|
from bigchaindb.backend.localmongodb.connection import LocalMongoDBConnection
|
||||||
from bigchaindb.common.transaction import Transaction
|
from bigchaindb.common.transaction import Transaction
|
||||||
|
|
||||||
|
|
||||||
register_query = module_dispatch_registrar(backend.query)
|
register_query = module_dispatch_registrar(backend.query)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -479,6 +479,10 @@ class BigchainDB(object):
|
|||||||
return backend.query.store_pre_commit_state(self.connection, state)
|
return backend.query.store_pre_commit_state(self.connection, state)
|
||||||
|
|
||||||
def store_validator_set(self, height, validators):
|
def store_validator_set(self, height, validators):
|
||||||
|
"""Store validator set at a given `height`.
|
||||||
|
NOTE: If the validator set already exists at that `height` then an
|
||||||
|
exception will be raised.
|
||||||
|
"""
|
||||||
return backend.query.store_validator_set(self.connection, {'height': height,
|
return backend.query.store_validator_set(self.connection, {'height': height,
|
||||||
'validators': validators})
|
'validators': validators})
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user