aboutsummaryrefslogtreecommitdiff
path: root/src/bignum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bignum.cpp')
-rw-r--r--src/bignum.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bignum.cpp b/src/bignum.cpp
index 7cf5e791cb..e98cce7436 100644
--- a/src/bignum.cpp
+++ b/src/bignum.cpp
@@ -156,7 +156,6 @@ bool bignum_mul(BigNum *dest, BigNum *op1, BigNum *op2) {
if (dest->kind == BigNumKindFloat) {
dest->data.x_float = op1->data.x_float * op2->data.x_float;
- bignum_normalize(dest);
return false;
}