Disable odds 1 as it is broken

This commit is contained in:
jl777
2018-11-11 03:47:06 -11:00
parent e3113b9cbf
commit 84fff7e097

View File

@@ -1421,7 +1421,7 @@ std::string DiceBet(uint64_t txfee,char *planstr,uint256 fundingtxid,int64_t bet
CCerror = "bet must be positive";
return("");
}
if ( odds < 1 || odds > 9999 )
if ( odds < 2 || odds > 9999 )
{
CCerror = "odds must be between 2 and 9999";
return("");