diff options
Diffstat (limited to 'core/agreement_test.go')
-rw-r--r-- | core/agreement_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/agreement_test.go b/core/agreement_test.go index 0854c7e..b784560 100644 --- a/core/agreement_test.go +++ b/core/agreement_test.go @@ -34,8 +34,8 @@ type agreementTestReceiver struct { agreementIndex int } -func (r *agreementTestReceiver) VerifyPartialSignature(*types.Vote) bool { - return true +func (r *agreementTestReceiver) VerifyPartialSignature(*types.Vote) (bool, bool) { + return true, false } func (r *agreementTestReceiver) ProposeVote(vote *types.Vote) { |