From 4415ae3f5caef073ea277c0e0f2e51c735fd1035 Mon Sep 17 00:00:00 2001 From: Fang Date: Mon, 17 Aug 2020 18:53:06 +0200 Subject: [PATCH] constants: (nearly) limitless suggested gas price --- src/lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/constants.js b/src/lib/constants.js index 82038761e..71d4402c4 100644 --- a/src/lib/constants.js +++ b/src/lib/constants.js @@ -2,7 +2,7 @@ import { isDevelopment } from './flags'; const CHECK_BLOCK_EVERY_MS = isDevelopment ? 1000 : 10000; const DEFAULT_GAS_PRICE_GWEI = 40; -const MAX_GAS_PRICE_GWEI = 80; +const MAX_GAS_PRICE_GWEI = 400; const MIN_GALAXY = 0; const MAX_GALAXY = 255;