From 1d916f399fecdf1d1d7f50a309afe3cc3c1d3606 Mon Sep 17 00:00:00 2001 From: edwinbernadus Date: Fri, 5 Apr 2024 14:23:07 +0700 Subject: [PATCH] add delay on initial setup - import account --- commands/metamask.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/metamask.js b/commands/metamask.js index 6f24d067f..b46d79914 100644 --- a/commands/metamask.js +++ b/commands/metamask.js @@ -1509,6 +1509,7 @@ const metamask = { } else { // private key await module.exports.createWallet(password); + await sleep(1000); await module.exports.importAccount(secretWordsOrPrivateKey); }