summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/pending.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-11-27 11:23:06 +0100
committerFlorian Dold <florian@dold.me>2020-11-27 11:23:06 +0100
commit0828e65f8845dc4b148c0d3b0697fb589b338239 (patch)
tree800245846e3b28a9dfe89c2893fd0a9bcf47847e /packages/taler-wallet-core/src/operations/pending.ts
parent4e481a51c64084db21d3eea513b13a7a3bd6603a (diff)
downloadwallet-core-0828e65f8845dc4b148c0d3b0697fb589b338239.tar.gz
wallet-core-0828e65f8845dc4b148c0d3b0697fb589b338239.tar.bz2
wallet-core-0828e65f8845dc4b148c0d3b0697fb589b338239.zip
fix static types
Diffstat (limited to 'packages/taler-wallet-core/src/operations/pending.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/pending.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/taler-wallet-core/src/operations/pending.ts b/packages/taler-wallet-core/src/operations/pending.ts
index 4f6477d50..a42d89c9a 100644
--- a/packages/taler-wallet-core/src/operations/pending.ts
+++ b/packages/taler-wallet-core/src/operations/pending.ts
@@ -37,7 +37,7 @@ import {
getDurationRemaining,
durationMin,
} from "../util/time";
-import { TransactionHandle } from "../util/query";
+import { Store, TransactionHandle } from "../util/query";
import { InternalWalletState } from "./state";
import { getBalancesInsideTransaction } from "./balance";
@@ -52,7 +52,7 @@ function updateRetryDelay(
}
async function gatherExchangePending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.exchanges>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -171,7 +171,7 @@ async function gatherExchangePending(
}
async function gatherReservePending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.reserves>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -226,7 +226,7 @@ async function gatherReservePending(
}
async function gatherRefreshPending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.refreshGroups>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -255,7 +255,7 @@ async function gatherRefreshPending(
}
async function gatherWithdrawalPending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.withdrawalGroups>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -295,7 +295,7 @@ async function gatherWithdrawalPending(
}
async function gatherProposalPending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.proposals>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -346,7 +346,7 @@ async function gatherProposalPending(
}
async function gatherTipPending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.tips>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -376,7 +376,7 @@ async function gatherTipPending(
}
async function gatherPurchasePending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.purchases>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,
@@ -419,7 +419,7 @@ async function gatherPurchasePending(
}
async function gatherRecoupPending(
- tx: TransactionHandle,
+ tx: TransactionHandle<typeof Stores.recoupGroups>,
now: Timestamp,
resp: PendingOperationsResponse,
onlyDue = false,