Skip to content

Commit

Permalink
fix: confirmtransaction
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Mucha <[email protected]>
  • Loading branch information
drptbl committed Oct 27, 2021
1 parent e390cea commit 57ba4b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/metamask.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ module.exports = {
);
const newGasFee = isKovanTestnet
? '1'
: (Number(currentGasFee) + 10).toString();
await puppeteer.waitClearAndType(
: (Number(currentGasFee) + 10).toString().replace('.', ',');
await puppeteer.waitAndSetValue(
newGasFee,
confirmPageElements.gasFeeInput,
notificationPage,
Expand Down

0 comments on commit 57ba4b4

Please sign in to comment.