From 9d6fee3c078907de22918f7b281f4106b7931916 Mon Sep 17 00:00:00 2001 From: ryanml Date: Wed, 25 Aug 2021 11:09:39 -0700 Subject: [PATCH] Updating decimal precision to 9 (getRoundedGasPrice) (#11930) --- ui/ducks/send/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ducks/send/send.js b/ui/ducks/send/send.js index 2d58b7137..6ee102b69 100644 --- a/ui/ducks/send/send.js +++ b/ui/ducks/send/send.js @@ -384,7 +384,7 @@ export const computeEstimatedGasLimit = createAsyncThunk( */ function getRoundedGasPrice(gasPriceEstimate) { const gasPriceInDecGwei = conversionUtil(gasPriceEstimate, { - numberOfDecimals: 4, + numberOfDecimals: 9, toDenomination: GWEI, fromNumericBase: 'dec', toNumericBase: 'dec',