diff --git a/Cargo.lock b/Cargo.lock index 2f750b77d..716d2e3ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3295,7 +3295,6 @@ dependencies = [ "sp-core", "sp-inherents", "sp-io", - "sp-keyring", "sp-keystore", "sp-offchain", "sp-runtime", diff --git a/crates/humanode-runtime/Cargo.toml b/crates/humanode-runtime/Cargo.toml index a29536a10..287cd7466 100644 --- a/crates/humanode-runtime/Cargo.toml +++ b/crates/humanode-runtime/Cargo.toml @@ -92,7 +92,6 @@ eip712-common-test-utils = { version = "0.1", path = "../eip712-common-test-util hex = "0.4" serde_json = "1" sp-io = { git = "https://github.com/humanode-network/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/humanode-network/substrate", branch = "master" } sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "master" } [features] diff --git a/crates/humanode-runtime/src/tests/claims_and_vesting.rs b/crates/humanode-runtime/src/tests/claims_and_vesting.rs index 169d161ce..06127a890 100644 --- a/crates/humanode-runtime/src/tests/claims_and_vesting.rs +++ b/crates/humanode-runtime/src/tests/claims_and_vesting.rs @@ -10,9 +10,7 @@ use frame_support::{ traits::{OnFinalize, OnInitialize}, weights::{DispatchClass, DispatchInfo, Pays}, }; -use frame_system::offchain::{SendSignedTransaction, Signer}; use sp_application_crypto::AppKey; -use sp_core::offchain::{testing::TestTransactionPoolExt, TransactionPoolExt}; use sp_keystore::{testing::KeyStore, KeystoreExt, SyncCryptoStore}; use sp_runtime::traits::{Header, SignedExtension}; use vesting_schedule_linear::LinearSchedule;