summaryrefslogtreecommitdiff
path: root/src/util/amounts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/amounts.ts')
-rw-r--r--src/util/amounts.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/amounts.ts b/src/util/amounts.ts
index 94aefb3cd..1e7f192f4 100644
--- a/src/util/amounts.ts
+++ b/src/util/amounts.ts
@@ -349,7 +349,7 @@ function mult(a: AmountJson, n: number): Result {
n = n / 2;
} else {
n = (n - 1) / 2;
- const r2 = add(acc, x)
+ const r2 = add(acc, x);
if (r2.saturated) {
return r2;
}