Update subxt dependencies (#2072)

This commit is contained in:
Serban Iorga
2023-04-26 09:49:05 +03:00
committed by Bastian Köcher
parent 65b2196c6b
commit 97ef70c67a
3 changed files with 196 additions and 7518 deletions
@@ -8,7 +8,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "3.1.5" } codec = { package = "parity-scale-codec", version = "3.1.5" }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
subxt = { version = "0.27.1", default-features = false, features = [] } subxt = { version = "0.28.0", default-features = false, features = [] }
# Bridge dependencies # Bridge dependencies
File diff suppressed because it is too large Load Diff
@@ -61,8 +61,7 @@ impl Chain for RialtoParachain {
impl ChainWithBalances for RialtoParachain { impl ChainWithBalances for RialtoParachain {
fn account_info_storage_key(account_id: &Self::AccountId) -> StorageKey { fn account_info_storage_key(account_id: &Self::AccountId) -> StorageKey {
let key = codegen_runtime::api::storage().system().account(account_id); bp_polkadot_core::AccountInfoStorageMapKeyProvider::final_key(account_id)
StorageKey(key.to_bytes())
} }
} }