From d6cce5e4465eb65c85acd40868623893a8445f01 Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Tue, 8 Oct 2019 13:20:44 +0400 Subject: [PATCH] Don't show gas calculations in send funds review --- .../components/Balances/SendModal/screens/ReviewTx/index.jsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routes/safe/components/Balances/SendModal/screens/ReviewTx/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/ReviewTx/index.jsx index 81dbb126..97f06153 100644 --- a/src/routes/safe/components/Balances/SendModal/screens/ReviewTx/index.jsx +++ b/src/routes/safe/components/Balances/SendModal/screens/ReviewTx/index.jsx @@ -79,7 +79,6 @@ const ReviewTx = ({ } const estimatedGasCosts = await estimateApprovalTxGasCosts(safeAddress, txRecipient, txData) - console.log({ estimatedGasCosts }) const gasCostsAsEth = fromWei(toBN(estimatedGasCosts), 'ether') const roundedGasCosts = parseFloat(gasCostsAsEth).toFixed(3) if (isCurrent) { @@ -180,9 +179,6 @@ const ReviewTx = ({ - - {`Gas costs: ${gasCosts}`} -