From 7ee11e27e22fde83ac1a5d46b529dbe3107be6f2 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Mon, 3 May 2021 09:57:42 -0400 Subject: [PATCH] fix: can't send transactions on browser Fixes #2433 Fixes #2422 --- ui/app/AppLayouts/Browser/BrowserLayout.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Browser/BrowserLayout.qml b/ui/app/AppLayouts/Browser/BrowserLayout.qml index 13e38015cc..7b5cbfd6f3 100644 --- a/ui/app/AppLayouts/Browser/BrowserLayout.qml +++ b/ui/app/AppLayouts/Browser/BrowserLayout.qml @@ -77,7 +77,7 @@ Rectangle { } // TODO we'll need a new dialog at one point because this one is not using the same call, but it's good for now - property Component sendTransactionModalComponent: SignTransactionModal {} +property Component sendTransactionModalComponent: SignTransactionModal {} property Component signMessageModalComponent: SignMessageModal {} @@ -228,7 +228,6 @@ Rectangle { sendDialog.destroy() } - sendDialog.estimateGas() sendDialog.open(); walletModel.getGasPricePredictions() } else if (request.type === Constants.web3SendAsyncReadOnly && ["eth_sign", "personal_sign", "eth_signTypedData", "eth_signTypedData_v3"].indexOf(request.payload.method) > -1) {