From 3b25f85ace8f875ebf63a2712ce046855c251998 Mon Sep 17 00:00:00 2001 From: JSKitty Date: Thu, 21 Sep 2023 17:21:00 +0100 Subject: [PATCH] Fix MasterKey use after #158 and #200 conflict --- scripts/Activity.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Activity.vue b/scripts/Activity.vue index e546cedef..5dd19cae1 100644 --- a/scripts/Activity.vue +++ b/scripts/Activity.vue @@ -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; } @@ -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, ]) )