From c65913edaa5199a69f8b9d604795de0e763be0e5 Mon Sep 17 00:00:00 2001 From: Anastasia Poupeney Date: Tue, 10 Jul 2018 14:01:21 +0200 Subject: [PATCH] fixes 963 --- src/helpers/SettingsDefaults.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/SettingsDefaults.js b/src/helpers/SettingsDefaults.js index 469c08c2..3f47ac43 100644 --- a/src/helpers/SettingsDefaults.js +++ b/src/helpers/SettingsDefaults.js @@ -16,7 +16,7 @@ export const currencySettingsDefaults = ({ let confirmationsNb if (blockAvgTime) { const def = Math.ceil((30 * 60) / blockAvgTime) // 30 min approx validation - confirmationsNb = { min: 1, def, max: 2 * def } + confirmationsNb = { min: 1, def, max: 3 * def } } return { confirmationsNb,