File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import * as Buffer from 'buffer';
55import { WebSocketProgramAccountSubscriber } from './webSocketProgramAccountSubscriber' ;
66import {
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 {
You can’t perform that action at this time.
0 commit comments