Skip to content

Commit f94c473

Browse files
committed
Don't strip system pallet associated types. check System.Hashing, not Hash. Rename BlockHash trait to Hash
1 parent cf2f42a commit f94c473

File tree

9 files changed

+157
-127
lines changed

9 files changed

+157
-127
lines changed

core/src/config/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub type HashFor<T> = <<T as Config>::Hasher as Hasher>::Output;
6363
pub type ParamsFor<T> = <<T as Config>::ExtrinsicParams as ExtrinsicParams<T>>::Params;
6464

6565
/// Block hashes must conform to a bunch of things to be used in Subxt.
66-
pub trait BlockHash:
66+
pub trait Hash:
6767
Debug
6868
+ Copy
6969
+ Send
@@ -78,7 +78,7 @@ pub trait BlockHash:
7878
+ core::hash::Hash
7979
{
8080
}
81-
impl<T> BlockHash for T where
81+
impl<T> Hash for T where
8282
T: Debug
8383
+ Copy
8484
+ Send
@@ -98,7 +98,7 @@ impl<T> BlockHash for T where
9898
/// and extrinsics.
9999
pub trait Hasher {
100100
/// The type given back from the hash operation
101-
type Output: BlockHash;
101+
type Output: Hash;
102102

103103
/// Construct a new hasher.
104104
fn new(metadata: &Metadata) -> Self;

core/src/config/substrate.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ pub struct DynamicHasher256(HashType);
6262

6363
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
6464
enum HashType {
65+
// Most chains use this:
6566
BlakeTwo256,
67+
// Chains like Hyperbridge use this (tends to be eth compatible chains)
6668
Keccak256,
69+
// If we don't have V16 metadata, we'll emit this and default to BlakeTwo256.
6770
Unknown,
6871
}
6972

@@ -75,18 +78,18 @@ impl Hasher for DynamicHasher256 {
7578
let Some(system_pallet) = metadata.pallet_by_name("System") else {
7679
return Self(HashType::Unknown);
7780
};
78-
let Some(hash_ty_id) = system_pallet.associated_type_id("Hash") else {
81+
let Some(hash_ty_id) = system_pallet.associated_type_id("Hashing") else {
7982
return Self(HashType::Unknown);
8083
};
8184

8285
let ty = metadata
8386
.types()
8487
.resolve(hash_ty_id)
85-
.expect("Type information for 'Hash' associated tyoe should be in metadata");
88+
.expect("Type information for 'Hashing' associated tyoe should be in metadata");
8689

8790
let hash_type = match ty.path.ident().as_deref().unwrap_or("") {
8891
"BlakeTwo256" => HashType::BlakeTwo256,
89-
"Keccak" => HashType::Keccak256,
92+
"Keccak256" => HashType::Keccak256,
9093
_ => HashType::Unknown,
9194
};
9295

@@ -131,6 +134,7 @@ where
131134
{
132135
type Number = N;
133136
type Hasher = H;
137+
134138
fn number(&self) -> Self::Number {
135139
self.number
136140
}

rpcs/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub trait RpcConfig {
4545
/// The block header type.
4646
type Header: Header;
4747
/// The block hash type.
48-
type Hash: BlockHash;
48+
type Hash: Hash;
4949
/// The Account ID type.
5050
type AccountId: AccountId;
5151
}
@@ -55,8 +55,8 @@ pub trait Header: std::fmt::Debug + codec::Decode + serde::de::DeserializeOwned
5555
impl<T> Header for T where T: std::fmt::Debug + codec::Decode + serde::de::DeserializeOwned {}
5656

5757
/// A trait which is applied to any type that is a valid block hash.
58-
pub trait BlockHash: serde::de::DeserializeOwned + serde::Serialize {}
59-
impl<T> BlockHash for T where T: serde::de::DeserializeOwned + serde::Serialize {}
58+
pub trait Hash: serde::de::DeserializeOwned + serde::Serialize {}
59+
impl<T> Hash for T where T: serde::de::DeserializeOwned + serde::Serialize {}
6060

6161
/// A trait which is applied to any type that is a valid Account ID.
6262
pub trait AccountId: serde::Serialize {}

rpcs/src/methods/chain_head.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! methods exposed here.
88
99
use crate::client::{rpc_params, RpcClient, RpcSubscription};
10-
use crate::BlockHash;
10+
use crate::Hash;
1111
use crate::{Error, RpcConfig};
1212
use derive_where::derive_where;
1313
use futures::{Stream, StreamExt};
@@ -749,7 +749,7 @@ pub struct FollowSubscription<Hash> {
749749
done: bool,
750750
}
751751

752-
impl<Hash: BlockHash> FollowSubscription<Hash> {
752+
impl<H: Hash> FollowSubscription<H> {
753753
/// Fetch the next item in the stream.
754754
pub async fn next(&mut self) -> Option<<Self as Stream>::Item> {
755755
<Self as StreamExt>::next(self).await
@@ -760,8 +760,8 @@ impl<Hash: BlockHash> FollowSubscription<Hash> {
760760
}
761761
}
762762

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;
765765
fn poll_next(
766766
mut self: std::pin::Pin<&mut Self>,
767767
cx: &mut std::task::Context<'_>,
@@ -788,15 +788,15 @@ pub struct TransactionSubscription<Hash> {
788788
done: bool,
789789
}
790790

791-
impl<Hash: BlockHash> TransactionSubscription<Hash> {
791+
impl<H: Hash> TransactionSubscription<H> {
792792
/// Fetch the next item in the stream.
793793
pub async fn next(&mut self) -> Option<<Self as Stream>::Item> {
794794
<Self as StreamExt>::next(self).await
795795
}
796796
}
797797

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;
800800
fn poll_next(
801801
mut self: std::pin::Pin<&mut Self>,
802802
cx: &mut std::task::Context<'_>,
@@ -909,7 +909,7 @@ pub struct ArchiveStorageSubscription<Hash> {
909909
done: bool,
910910
}
911911

912-
impl<Hash: BlockHash> ArchiveStorageSubscription<Hash> {
912+
impl<H: Hash> ArchiveStorageSubscription<H> {
913913
/// Fetch the next item in the stream.
914914
pub async fn next(&mut self) -> Option<<Self as Stream>::Item> {
915915
<Self as StreamExt>::next(self).await
@@ -920,8 +920,8 @@ impl<Hash: BlockHash> ArchiveStorageSubscription<Hash> {
920920
}
921921
}
922922

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;
925925
fn poll_next(
926926
mut self: std::pin::Pin<&mut Self>,
927927
cx: &mut std::task::Context<'_>,

0 commit comments

Comments
 (0)