Skip to content

Commit

Permalink
making AbstractSimplesPool more extendable
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioconselheiro authored and fiatjaf committed Jul 9, 2024
1 parent dfc2107 commit 235a1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abstract-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type SubscribeManyParams = Omit<SubscriptionParams, 'onclose' | 'id'> & {
}

export class AbstractSimplePool {
private relays = new Map<string, AbstractRelay>()
protected relays = new Map<string, AbstractRelay>()
public seenOn: Map<string, Set<AbstractRelay>> = new Map()
public trackRelays: boolean = false

Expand Down

0 comments on commit 235a1c5

Please sign in to comment.