From e468186851493c956155d0f8e745bf7a8b1e31ed Mon Sep 17 00:00:00 2001 From: JSKitty Date: Fri, 22 Sep 2023 16:57:18 +0100 Subject: [PATCH] Fix incorrect `getXPub` in `openExplorer()` (#207) --- scripts/global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/global.js b/scripts/global.js index 0098f5c00..1ce274f8c 100644 --- a/scripts/global.js +++ b/scripts/global.js @@ -801,7 +801,7 @@ export async function openSendQRScanner() { */ export async function openExplorer(strAddress = '') { if (wallet.isLoaded() && wallet.isHD() && !strAddress) { - const xpub = await wallet.getxpub(); + const xpub = await wallet.getXPub(); window.open(cExplorer.url + '/xpub/' + xpub, '_blank'); } else { const address = strAddress || (await wallet.getAddress());