diff --git a/src/cc/auction.cpp b/src/cc/auction.cpp index 1bcf2ecd8..cf3ae601a 100644 --- a/src/cc/auction.cpp +++ b/src/cc/auction.cpp @@ -127,6 +127,8 @@ uint64_t AddAuctionInputs(struct CCcontract_info *cp,CMutableTransaction &mtx,CP { txid = it->first.txhash; // prevent dup + if ( it->second.satoshis < 1000000 ) + continue; if ( GetTransaction(txid,vintx,hashBlock,false) != 0 ) { if ( (nValue= IsAuctionvout(cp,vintx,(int32_t)it->first.index)) > 0 ) diff --git a/src/cc/dice.cpp b/src/cc/dice.cpp index a1527fec2..2240e5e57 100644 --- a/src/cc/dice.cpp +++ b/src/cc/dice.cpp @@ -431,7 +431,7 @@ uint64_t AddDiceInputs(CScript &scriptPubKey,int32_t fundsflag,struct CCcontract { txid = it->first.txhash; vout = (int32_t)it->first.index; - if ( it->second.satoshis < 10000 ) + if ( it->second.satoshis < 1000000 ) continue; fprintf(stderr,"(%s) %s/v%d %.8f\n",coinaddr,uint256_str(str,txid),vout,(double)it->second.satoshis/COIN); for (j=0; jfirst.txhash; // prevent dup + if ( it->second.satoshis < 1000000 ) + continue; if ( GetTransaction(txid,vintx,hashBlock,false) != 0 ) { if ( (nValue= IsLottovout(cp,vintx,(int32_t)it->first.index)) > 0 ) diff --git a/src/cc/ponzi.cpp b/src/cc/ponzi.cpp index c29f63ebc..d39f087dd 100644 --- a/src/cc/ponzi.cpp +++ b/src/cc/ponzi.cpp @@ -127,6 +127,8 @@ uint64_t AddPonziInputs(struct CCcontract_info *cp,CMutableTransaction &mtx,CPub { txid = it->first.txhash; // prevent dup + if ( it->second.satoshis < 1000000 ) + continue; if ( GetTransaction(txid,vintx,hashBlock,false) != 0 ) { if ( (nValue= IsPonzivout(cp,vintx,(int32_t)it->first.index)) > 0 ) diff --git a/src/cc/rewards.cpp b/src/cc/rewards.cpp index 6b562df8a..2067c6ebf 100644 --- a/src/cc/rewards.cpp +++ b/src/cc/rewards.cpp @@ -273,7 +273,7 @@ uint64_t AddRewardsInputs(CScript &scriptPubKey,int32_t fundsflag,struct CCcontr { txid = it->first.txhash; vout = (int32_t)it->first.index; - if ( it->second.satoshis < 10000 ) + if ( it->second.satoshis < 1000000 ) continue; fprintf(stderr,"(%s) %s/v%d %.8f\n",coinaddr,uint256_str(str,txid),vout,(double)it->second.satoshis/COIN); for (j=0; j