aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send.utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/pages/send/send.utils.js')
-rw-r--r--ui/app/pages/send/send.utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/pages/send/send.utils.js b/ui/app/pages/send/send.utils.js
index daf61bc1b..1f9bc202a 100644
--- a/ui/app/pages/send/send.utils.js
+++ b/ui/app/pages/send/send.utils.js
@@ -319,7 +319,7 @@ function estimateGasPriceFromRecentBlocks (recentBlocks) {
return parseInt(next, 16) < parseInt(currentLowest, 16) ? next : currentLowest
})
})
- .sort((a, b) => parseInt(a, 16) > parseInt(b, 16) ? 1 : -1)
+ .sort((a, b) => parseInt(a, 16) > parseInt(b, 16) ? 1 : -1)
return lowestPrices[Math.floor(lowestPrices.length / 2)]
}