remove stray validation

This commit is contained in:
Scott Sadler 2017-03-13 14:55:03 +01:00
parent 45f0840885
commit 0fb4ea424b

View File

@ -220,9 +220,6 @@ class Block(object):
if self.node_pubkey not in bigchain.federation:
raise SybilError('Only federation nodes can create blocks')
if set(self.voters) != bigchain.federation:
raise SybilError('Block voters differs from server keyring')
# Check that the signature is valid
if not self.is_signature_valid():
raise InvalidSignature('Invalid block signature')