address @ValarDragon comments, param store update

This commit is contained in:
rigelrozanski
2018-10-15 15:51:51 -04:00
parent 5de0c9a1f8
commit 2f4a01bcba
10 changed files with 53 additions and 34 deletions
-4
View File
@@ -244,10 +244,6 @@ func (d Dec) Quo(d2 Dec) Dec {
// quotient
func (d Dec) QuoInt(i Int) Dec {
mul := new(big.Int).Quo(d.Int, i.i)
if mul.BitLen() > 255+DecimalPrecisionBits {
panic("Int overflow")
}
return Dec{mul}
}