summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-02-05 12:10:56 +0100
committerFlorian Dold <florian@dold.me>2021-02-05 12:10:56 +0100
commitf234eef469bf153f38084dc79c0634efbd4e3270 (patch)
tree0c680673bf0d1d1ce36f15f616647fe449a95452 /packages/taler-wallet-core/src/operations
parent8fe6cff29761f605dedd67d9dce6d01db7e1c5b8 (diff)
downloadwallet-core-f234eef469bf153f38084dc79c0634efbd4e3270.tar.gz
wallet-core-f234eef469bf153f38084dc79c0634efbd4e3270.tar.bz2
wallet-core-f234eef469bf153f38084dc79c0634efbd4e3270.zip
increase pay timeoutv0.8.0
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r--packages/taler-wallet-core/src/operations/pay.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/pay.ts b/packages/taler-wallet-core/src/operations/pay.ts
index d8168acdf..cccbb3cac 100644
--- a/packages/taler-wallet-core/src/operations/pay.ts
+++ b/packages/taler-wallet-core/src/operations/pay.ts
@@ -677,8 +677,8 @@ function getProposalRequestTimeout(proposal: ProposalRecord): Duration {
function getPayRequestTimeout(purchase: PurchaseRecord): Duration {
return durationMul(
- { d_ms: 5000 },
- 1 + purchase.payCoinSelection.coinPubs.length / 20,
+ { d_ms: 15000 },
+ 1 + purchase.payCoinSelection.coinPubs.length / 5,
);
}