1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-05-16 14:37:00 +00:00

Increased timeout for other new actions.

This commit is contained in:
CalDescent 2023-05-05 18:30:14 +01:00
parent 86b5bae320
commit 3f71a63512

@ -432,6 +432,8 @@ function getDefaultTimeout(action) {
// Some actions need longer default timeouts, especially those that create transactions // Some actions need longer default timeouts, especially those that create transactions
switch (action) { switch (action) {
case "GET_USER_ACCOUNT": case "GET_USER_ACCOUNT":
case "SAVE_FILE":
case "DECRYPT_DATA":
// User may take a long time to accept/deny the popup // User may take a long time to accept/deny the popup
return 60 * 60 * 1000; return 60 * 60 * 1000;