This commit is contained in:
Dean Eigenmann 2024-04-04 16:39:14 +02:00 committed by GitHub
commit ee8321df3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1405,10 +1405,7 @@ func (d Decimal) IntPart() int64 {
// BigInt returns integer component of the decimal as a BigInt. // BigInt returns integer component of the decimal as a BigInt.
func (d Decimal) BigInt() *big.Int { func (d Decimal) BigInt() *big.Int {
scaledD := d.rescale(0) return new(big.Int).Set(d.value)
i := &big.Int{}
i.SetString(scaledD.String(), 10)
return i
} }
// BigFloat returns decimal as BigFloat. // BigFloat returns decimal as BigFloat.