Skip to content

Commit

Permalink
chore(gcli): remove vara runtime in dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop committed Dec 19, 2023
1 parent ca53eb7 commit 9f77c50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 gcli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ reqwest = { workspace = true, default-features = false, features = [ "json", "ru
etc.workspace = true
sp-io = { workspace = true, features = [ "std" ] }
sp-core = { workspace = true, features = [ "std" ] }
runtime-primitives.workspace = true
# TODO: use wasmi from workspace (#3214)
wasmi = { version = "0.30.0", features = ["std"] }

Expand All @@ -51,7 +52,6 @@ demo-messager.workspace = true
demo-new-meta.workspace = true
demo-waiter.workspace = true
gsdk = { workspace = true, features = ["testing"] }
vara-runtime = { workspace = true, features = [ "std", "dev" ] }

[build-dependencies]
which.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion gcli/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pub trait App: Parser + Sync {
/// and verbose level.
async fn run(&self) -> Result<()> {
color_eyre::install()?;
sp_core::crypto::set_default_ss58_version(crate::VARA_SS58_PREFIX.into());
sp_core::crypto::set_default_ss58_version(runtime_primitives::VARA_SS58_PREFIX.into());

let name = Self::command().get_name().to_string();
let filter = match self.verbose() {
Expand Down

0 comments on commit 9f77c50

Please sign in to comment.