From 75ff6d87267666cad39e44af4d937f7720bbe83a Mon Sep 17 00:00:00 2001 From: Pi Lanningham Date: Tue, 3 Dec 2024 00:03:57 -0500 Subject: [PATCH] Temporarily disable filter address --- src/utils/hydra.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/hydra.ts b/src/utils/hydra.ts index e673f7f..07f6ea0 100644 --- a/src/utils/hydra.ts +++ b/src/utils/hydra.ts @@ -72,7 +72,7 @@ export class Hydra { this.connection = new WebSocket( websocketUrl + (websocketUrl.toString().endsWith("/") ? "" : "/") + - `?${filterAddress ? `address=${filterAddress}&` : ""}history=no`, + `?history=no`, ); this.connection.onopen = () => { console.log("Connected to Hydra");