summaryrefslogtreecommitdiff
path: root/src/operations/tip.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-06-03 16:46:25 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-06-03 16:46:25 +0530
commit83af702f1cae043902e23e9358c3e036ddca8d33 (patch)
tree3b27fa06fd890406224a0cc4e074d9bd9457230d /src/operations/tip.ts
parent77c61e738181561979da64a480fe21f70f6fe1f4 (diff)
downloadwallet-core-83af702f1cae043902e23e9358c3e036ddca8d33.tar.gz
wallet-core-83af702f1cae043902e23e9358c3e036ddca8d33.tar.bz2
wallet-core-83af702f1cae043902e23e9358c3e036ddca8d33.zip
re-indent with latest version of prettier
Diffstat (limited to 'src/operations/tip.ts')
-rw-r--r--src/operations/tip.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/operations/tip.ts b/src/operations/tip.ts
index 15d2339b5..1ae7700a5 100644
--- a/src/operations/tip.ts
+++ b/src/operations/tip.ts
@@ -200,7 +200,10 @@ async function processTipImpl(
const planchets: TipPlanchet[] = [];
for (const sd of denomsForWithdraw.selectedDenoms) {
- const denom = await ws.db.getIndexed(Stores.denominations.denomPubHashIndex, sd.denomPubHash);
+ const denom = await ws.db.getIndexed(
+ Stores.denominations.denomPubHashIndex,
+ sd.denomPubHash,
+ );
if (!denom) {
throw Error("denom does not exist anymore");
}