Skip to content

Commit 7c5b93a

Browse files
committed
fix: lint/format
1 parent 6808e91 commit 7c5b93a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sdk/src/accounts/grpcProgramAccountSubscriber.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import * as Buffer from 'buffer';
55
import { WebSocketProgramAccountSubscriber } from './webSocketProgramAccountSubscriber';
66
import {
77
Client,
8-
ClientDuplexStream,
98
CommitmentLevel,
109
createClient,
1110
SubscribeRequest,
@@ -16,7 +15,7 @@ export class grpcProgramAccountSubscriber<
1615
T,
1716
> extends WebSocketProgramAccountSubscriber<T> {
1817
private client: Client;
19-
private stream: Awaited<ReturnType<Client["subscribe"]>>;;
18+
private stream: Awaited<ReturnType<Client["subscribe"]>>;
2019
private commitmentLevel: CommitmentLevel;
2120
public listenerId?: number;
2221

@@ -91,7 +90,7 @@ export class grpcProgramAccountSubscriber<
9190
this.onChange = onChange;
9291

9392
// Subscribe with grpc
94-
this.stream = await this.client.subscribe()
93+
this.stream = await this.client.subscribe();
9594

9695
const filters = this.options.filters.map((filter) => {
9796
return {

0 commit comments

Comments
 (0)