diff --git a/app/components/UI/CustomGas/index.js b/app/components/UI/CustomGas/index.js index e52ae3df3fd..17ac78ad2ea 100644 --- a/app/components/UI/CustomGas/index.js +++ b/app/components/UI/CustomGas/index.js @@ -342,7 +342,7 @@ class CustomGas extends PureComponent { const { transaction: { from, value } } = this.props; - const checksummedFrom = safeToChecksumAddress(from) || ''; + const checksummedFrom = safeToChecksumAddress(from); const fromAccount = this.props.accounts[checksummedFrom]; if (hexToBN(fromAccount.balance).lt(gas.mul(gasPrice).add(toBN(value)))) return strings('transaction.insufficient');