commit f234eef469bf153f38084dc79c0634efbd4e3270 parent 8fe6cff29761f605dedd67d9dce6d01db7e1c5b8 Author: Florian Dold <florian@dold.me> Date: Fri, 5 Feb 2021 12:10:56 +0100 increase pay timeout Diffstat:
| M | packages/taler-wallet-core/src/operations/pay.ts | | | 4 | ++-- |
1 file 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 @@ -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, ); }