From 033100ec59c539be537f3ced0377f1d30ef2dc8c Mon Sep 17 00:00:00 2001 From: Joe Andrews Date: Wed, 5 Feb 2020 13:14:27 +0000 Subject: [PATCH] feat(sdk): bump gas price --- packages/extension/src/utils/Web3Service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/extension/src/utils/Web3Service.js b/packages/extension/src/utils/Web3Service.js index 6f2191ace..191cddb8b 100644 --- a/packages/extension/src/utils/Web3Service.js +++ b/packages/extension/src/utils/Web3Service.js @@ -374,7 +374,7 @@ class Web3Service { method: gsnContract.methods[methodName], fromAddress: signingInfo.address, args, - gasPrice: gasPrice ? gasPrice * 1.3 : 18000000000, // set gas price 30% higher than last few blocks median to ensure we get in the block + gasPrice: gasPrice ? gasPrice * 2 : 18000000000, // set gas price 100% higher than last few blocks median to ensure we get in the block web3, }); },