diff options
author | Florian Dold <florian@dold.me> | 2021-02-05 12:10:56 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-02-05 12:10:56 +0100 |
commit | f234eef469bf153f38084dc79c0634efbd4e3270 (patch) | |
tree | 0c680673bf0d1d1ce36f15f616647fe449a95452 | |
parent | 8fe6cff29761f605dedd67d9dce6d01db7e1c5b8 (diff) |
increase pay timeoutv0.8.0
-rw-r--r-- | packages/taler-wallet-core/src/operations/pay.ts | 4 |
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, ); } |