Skip to content

Commit

Permalink
WalletConnect: fix WC not respecting gas limit (#1775)
Browse files Browse the repository at this point in the history
  • Loading branch information
EtDu authored Sep 3, 2020
1 parent f6d5186 commit cd6253f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/WalletConnect.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class WalletConnect {
txParams.to = payload.params[0].to;
txParams.from = payload.params[0].from;
txParams.value = payload.params[0].value;
txParams.gasLimit = payload.params[0].gasLimit;
txParams.gas = payload.params[0].gas;
txParams.gasPrice = payload.params[0].gasPrice;
txParams.data = payload.params[0].data;
const hash = await (await TransactionController.addTransaction(
Expand Down

0 comments on commit cd6253f

Please sign in to comment.