summaryrefslogtreecommitdiff
path: root/src/operations/history.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/operations/history.ts')
-rw-r--r--src/operations/history.ts10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/operations/history.ts b/src/operations/history.ts
index 4e43596f0..f04dad113 100644
--- a/src/operations/history.ts
+++ b/src/operations/history.ts
@@ -18,11 +18,7 @@
* Imports.
*/
import { InternalWalletState } from "./state";
-import {
- Stores,
- ProposalStatus,
- ProposalRecord,
-} from "../types/dbTypes";
+import { Stores, ProposalStatus, ProposalRecord } from "../types/dbTypes";
import { Amounts } from "../util/amounts";
import { AmountJson } from "../util/amounts";
import {
@@ -216,7 +212,9 @@ export async function getHistory(
HistoryEventType.Withdrawn,
wsr.withdrawalGroupId,
),
- amountWithdrawnEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue),
+ amountWithdrawnEffective: Amounts.stringify(
+ wsr.denomsSel.totalCoinValue,
+ ),
amountWithdrawnRaw: Amounts.stringify(wsr.rawWithdrawalAmount),
exchangeBaseUrl: wsr.exchangeBaseUrl,
timestamp: wsr.timestampFinish,