From 8a6ee8d02d5c2bc97f0dd5751cf263bf1c563338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B3nio=20Conselheiro?= Date: Mon, 8 Jul 2024 20:55:47 +0000 Subject: [PATCH] making AbstractSimplesPool more extendable --- abstract-pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abstract-pool.ts b/abstract-pool.ts index 263a962..8494962 100644 --- a/abstract-pool.ts +++ b/abstract-pool.ts @@ -23,7 +23,7 @@ export type SubscribeManyParams = Omit & { } export class AbstractSimplePool { - private relays = new Map() + protected relays = new Map() public seenOn: Map> = new Map() public trackRelays: boolean = false