aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/taler-wallet-webextension/src/wallet/DeveloperPage.tsx10
1 files changed, 1 insertions, 9 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/DeveloperPage.tsx b/packages/taler-wallet-webextension/src/wallet/DeveloperPage.tsx
index c972f0919..6d1175d0f 100644
--- a/packages/taler-wallet-webextension/src/wallet/DeveloperPage.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/DeveloperPage.tsx
@@ -325,20 +325,12 @@ export function View({
const oldKeys = JSON.stringify(
await (await fetch(`${url}keys`)).json(),
);
- const oldWire = JSON.stringify(
- await (await fetch(`${url}wire`)).json(),
- );
const newKeys = JSON.stringify(
await (
await fetch(`${url}keys`, { cache: "no-cache" })
).json(),
);
- const newWire = JSON.stringify(
- await (
- await fetch(`${url}wire`, { cache: "no-cache" })
- ).json(),
- );
- return oldKeys !== newKeys || newWire !== oldWire;
+ return oldKeys !== newKeys;
}),
);
const ex = exchangeList.filter((e, i) => result[i]);