7
7
//! methods exposed here.
8
8
9
9
use crate :: client:: { rpc_params, RpcClient , RpcSubscription } ;
10
- use crate :: BlockHash ;
10
+ use crate :: Hash ;
11
11
use crate :: { Error , RpcConfig } ;
12
12
use derive_where:: derive_where;
13
13
use futures:: { Stream , StreamExt } ;
@@ -749,7 +749,7 @@ pub struct FollowSubscription<Hash> {
749
749
done : bool ,
750
750
}
751
751
752
- impl < Hash : BlockHash > FollowSubscription < Hash > {
752
+ impl < H : Hash > FollowSubscription < H > {
753
753
/// Fetch the next item in the stream.
754
754
pub async fn next ( & mut self ) -> Option < <Self as Stream >:: Item > {
755
755
<Self as StreamExt >:: next ( self ) . await
@@ -760,8 +760,8 @@ impl<Hash: BlockHash> FollowSubscription<Hash> {
760
760
}
761
761
}
762
762
763
- impl < Hash : BlockHash > Stream for FollowSubscription < Hash > {
764
- type Item = <RpcSubscription < FollowEvent < Hash > > as Stream >:: Item ;
763
+ impl < H : Hash > Stream for FollowSubscription < H > {
764
+ type Item = <RpcSubscription < FollowEvent < H > > as Stream >:: Item ;
765
765
fn poll_next (
766
766
mut self : std:: pin:: Pin < & mut Self > ,
767
767
cx : & mut std:: task:: Context < ' _ > ,
@@ -788,15 +788,15 @@ pub struct TransactionSubscription<Hash> {
788
788
done : bool ,
789
789
}
790
790
791
- impl < Hash : BlockHash > TransactionSubscription < Hash > {
791
+ impl < H : Hash > TransactionSubscription < H > {
792
792
/// Fetch the next item in the stream.
793
793
pub async fn next ( & mut self ) -> Option < <Self as Stream >:: Item > {
794
794
<Self as StreamExt >:: next ( self ) . await
795
795
}
796
796
}
797
797
798
- impl < Hash : BlockHash > Stream for TransactionSubscription < Hash > {
799
- type Item = <RpcSubscription < TransactionStatus < Hash > > as Stream >:: Item ;
798
+ impl < H : Hash > Stream for TransactionSubscription < H > {
799
+ type Item = <RpcSubscription < TransactionStatus < H > > as Stream >:: Item ;
800
800
fn poll_next (
801
801
mut self : std:: pin:: Pin < & mut Self > ,
802
802
cx : & mut std:: task:: Context < ' _ > ,
@@ -909,7 +909,7 @@ pub struct ArchiveStorageSubscription<Hash> {
909
909
done : bool ,
910
910
}
911
911
912
- impl < Hash : BlockHash > ArchiveStorageSubscription < Hash > {
912
+ impl < H : Hash > ArchiveStorageSubscription < H > {
913
913
/// Fetch the next item in the stream.
914
914
pub async fn next ( & mut self ) -> Option < <Self as Stream >:: Item > {
915
915
<Self as StreamExt >:: next ( self ) . await
@@ -920,8 +920,8 @@ impl<Hash: BlockHash> ArchiveStorageSubscription<Hash> {
920
920
}
921
921
}
922
922
923
- impl < Hash : BlockHash > Stream for ArchiveStorageSubscription < Hash > {
924
- type Item = <RpcSubscription < ArchiveStorageEvent < Hash > > as Stream >:: Item ;
923
+ impl < H : Hash > Stream for ArchiveStorageSubscription < H > {
924
+ type Item = <RpcSubscription < ArchiveStorageEvent < H > > as Stream >:: Item ;
925
925
fn poll_next (
926
926
mut self : std:: pin:: Pin < & mut Self > ,
927
927
cx : & mut std:: task:: Context < ' _ > ,
0 commit comments