Skip to content

Commit

Permalink
Rename crate to ac-keystore (#754)
Browse files Browse the repository at this point in the history
* Rename crate to ac-keystore

To be more consistent with the remaining crates

* Fix compilation error
  • Loading branch information
Niederb authored Mar 14, 2024
1 parent cc4a4a4 commit 32cd734
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["no-std", "wasm"]
[workspace]
members = [
".",
"client-keystore",
"keystore",
"compose-macros",
"examples/async",
"examples/sync",
Expand Down
2 changes: 1 addition & 1 deletion client-keystore/Cargo.toml → keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "substrate-client-keystore"
name = "ac-keystore"
version = "0.10.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion testing/sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch =

# local deps
substrate-api-client = { path = "../..", version = "0.17", default-features = false, features = ["tungstenite-client", "ws-client"] }
substrate-client-keystore = { path = "../../client-keystore" }
ac-keystore = { path = "../../keystore" }
2 changes: 1 addition & 1 deletion testing/sync/examples/keystore_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

//! Tests for the author rpc interface functions.
use ac_keystore::{Keystore, KeystoreExt, LocalKeystore};
use sp_application_crypto::sr25519;
use sp_core::crypto::{KeyTypeId, Ss58Codec};
use std::path::PathBuf;
use substrate_client_keystore::{Keystore, KeystoreExt, LocalKeystore};

pub const KEYSTORE_PATH: &str = "my_keystore";
pub const SR25519: KeyTypeId = KeyTypeId(*b"sr25");
Expand Down

0 comments on commit 32cd734

Please sign in to comment.