From 621ec418fb41fc8083d43534eb52333055ad5156 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 25 Feb 2019 07:37:17 -1100 Subject: [PATCH] Return true --- src/cc/dilithium.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/dilithium.c b/src/cc/dilithium.c index 8b258bf49..1f893d268 100644 --- a/src/cc/dilithium.c +++ b/src/cc/dilithium.c @@ -3433,7 +3433,7 @@ bool dilithium_Qvalidate(struct CCcontract_info *cp,int32_t height,Eval *eval,co return eval->Invalid("failed dilithium verify"); else if ( mlen != 32 || memcmp(msg,msg2,32) != 0 ) return eval->Invalid("failed dilithium msg verify"); - else return eval->Invalid("this is actually a success"); + else return true; } } else return eval->Invalid("failed decode Qsend"); } else return eval->Invalid("unexpected zero signerpubtxid");