From 698d25f7589ef81a42f1999fafd63d4f1fd1449c Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 22 Jul 2018 13:47:37 -1100 Subject: [PATCH] Test --- src/cc/CCutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/CCutils.cpp b/src/cc/CCutils.cpp index cddf39e46..01511210f 100644 --- a/src/cc/CCutils.cpp +++ b/src/cc/CCutils.cpp @@ -101,7 +101,7 @@ bool ConstrainVout(CTxOut vout,int32_t CCflag,char *cmpaddr,uint64_t nValue) fprintf(stderr,"constrain vout error addr %s vs %s\n",cmpaddr!=0?cmpaddr:"",destaddr!=0?destaddr:""); return(false); } - else if ( (nValue == 0 && vout.nValue < 10000) || (nValue != 0 && nValue != vout.nValue) ) + else if ( nValue != 0 && nValue != vout.nValue ) //(nValue == 0 && vout.nValue < 10000) || ( { fprintf(stderr,"constrain vout error nValue %.8f vs %.8f\n",(double)nValue/COIN,(double)vout.nValue/COIN); return(false);