diff --git a/iguana/iguana_notary.c b/iguana/iguana_notary.c index 807c240c9..b57e8a5de 100755 --- a/iguana/iguana_notary.c +++ b/iguana/iguana_notary.c @@ -71,6 +71,8 @@ void dpow_srcupdate(struct supernet_info *myinfo,struct dpow_info *dp,int32_t he { freq = 1; minsigs = (komodo_notaries(dp->symbol,pubkeys,height) >> 1) + 1; + if ( minsigs > DPOW_MINSIGS ) + minsigs = DPOW_MINSIGS; } printf("%s src ht.%d dest.%u nonz.%d %s minsigs.%d\n",dp->symbol,height,dp->destupdated,bits256_nonz(checkpoint.blockhash.hash),bits256_str(str,dp->last.blockhash.hash),minsigs); dpow_fifoupdate(myinfo,dp->srcfifo,dp->last);