File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
yellowstone-grpc-client/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ impl GeyserGrpcBuilder {
244
244
fn build (
245
245
self ,
246
246
channel : Channel ,
247
- ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < impl Interceptor > > {
247
+ ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < InterceptorXToken > > {
248
248
let interceptor = InterceptorXToken {
249
249
x_token : self . x_token ,
250
250
x_request_snapshot : self . x_request_snapshot ,
@@ -270,12 +270,12 @@ impl GeyserGrpcBuilder {
270
270
) )
271
271
}
272
272
273
- pub async fn connect ( self ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < impl Interceptor > > {
273
+ pub async fn connect ( self ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < InterceptorXToken > > {
274
274
let channel = self . endpoint . connect ( ) . await ?;
275
275
self . build ( channel)
276
276
}
277
277
278
- pub fn connect_lazy ( self ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < impl Interceptor > > {
278
+ pub fn connect_lazy ( self ) -> GeyserGrpcBuilderResult < GeyserGrpcClient < InterceptorXToken > > {
279
279
let channel = self . endpoint . connect_lazy ( ) ;
280
280
self . build ( channel)
281
281
}
You can’t perform that action at this time.
0 commit comments