From 0fb4ea424b16c965f6f7579cfc1016df23fae28f Mon Sep 17 00:00:00 2001 From: Scott Sadler Date: Mon, 13 Mar 2017 14:55:03 +0100 Subject: [PATCH] remove stray validation --- bigchaindb/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bigchaindb/models.py b/bigchaindb/models.py index bf6bafd5..771d6d6a 100644 --- a/bigchaindb/models.py +++ b/bigchaindb/models.py @@ -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')