Consensus

class bigchaindb.consensus.BaseConsensusRules[source]

Base consensus rules for Bigchain.

static validate_transaction(bigchain, transaction)[source]

See bigchaindb.models.Transaction.validate() for documentation.

static validate_block(bigchain, block)[source]

See bigchaindb.models.Block.validate() for documentation.

static verify_vote_signature(voters, signed_vote)[source]

Verify the signature of a vote.

Refer to the documentation of bigchaindb.util.verify_signature().