From da97c4c6b5de6750fa985c25796446e3575ffb35 Mon Sep 17 00:00:00 2001 From: diminator Date: Tue, 10 May 2016 17:20:11 +0200 Subject: [PATCH] docstring update --- bigchaindb/consensus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/consensus.py b/bigchaindb/consensus.py index 62131eab..29cca142 100644 --- a/bigchaindb/consensus.py +++ b/bigchaindb/consensus.py @@ -157,7 +157,7 @@ class BaseConsensusRules(AbstractConsensusRules): if calculated_hash != transaction['id']: raise exceptions.InvalidHash() - # Check signature + # Check fulfillments if not util.validate_fulfillments(transaction): raise exceptions.InvalidSignature()