From 25326624dbf85cf4e1e911a6a350fb879c2242ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Sat, 2 Jun 2018 21:31:05 +0200 Subject: [PATCH] max confirmationsNb need to be variable to adapt to 30mn default's --- 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 4c0af154..aecec5eb 100644 --- a/src/helpers/SettingsDefaults.js +++ b/src/helpers/SettingsDefaults.js @@ -46,7 +46,7 @@ export const currencySettingsDefaults = (currency: CryptoCurrency): Confirmation ? { min: 1, def: confirmationsNbDef, - max: 100, + max: 2 * confirmationsNbDef, } : null, }