From 90fe16aab90af54425564b9d2a775137f4e09f50 Mon Sep 17 00:00:00 2001 From: Nazar Mokrynskyi Date: Mon, 30 Sep 2024 19:37:03 +0300 Subject: [PATCH] Remove hack that is no longer necessary (apparently fixed upstream) --- Cargo.lock | 1 - domains/primitives/runtime/Cargo.toml | 2 -- 2 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35d98d8d1c..259cc84d3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2694,7 +2694,6 @@ dependencies = [ name = "domain-runtime-primitives" version = "0.1.0" dependencies = [ - "fixed-hash", "fp-account", "frame-support", "frame-system", diff --git a/domains/primitives/runtime/Cargo.toml b/domains/primitives/runtime/Cargo.toml index c4a6f18950..f13523b654 100644 --- a/domains/primitives/runtime/Cargo.toml +++ b/domains/primitives/runtime/Cargo.toml @@ -12,8 +12,6 @@ description = "Common primitives of subspace domain runtime" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -# TODO: This dependency is only included because of https://github.com/polkadot-evm/frontier/pull/1426/files#r1648652020 -fixed-hash = { version = "0.8.0", default-features = false, features = ["rustc-hex"] } fp-account = { version = "1.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } frame-support = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "5871818e1d736f1843eb9078f886290695165c42" } frame-system = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "5871818e1d736f1843eb9078f886290695165c42" }