Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dashboard_tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Duddino committed Sep 25, 2023
2 parents 562aa67 + e468186 commit f470f3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/Activity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async function parseTXs(arrTXs) {
// Check all addresses to find our own, caching them for performance
for (const strAddr of cTx.receivers.concat(cTx.senders)) {
// If a previous Tx checked this address, skip it, otherwise, check it against our own address(es)
if (!(await wallet.getMasterKey().isOwnAddress(strAddr))) {
if (!(await wallet.isOwnAddress(strAddr))) {
// External address, this is not a self-only Tx
fSendToSelf = false;
}
Expand All @@ -208,7 +208,7 @@ async function parseTXs(arrTXs) {
const arrExternalAddresses = (
await Promise.all(
cTx[where].map(async (addr) => [
await wallet.getMasterKey().isOwnAddress(addr),
await wallet.isOwnAddress(addr),
addr,
])
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,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());
Expand Down

0 comments on commit f470f3b

Please sign in to comment.