Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseAbram committed Sep 11, 2024
1 parent 7b9c281 commit 6e6fa9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/shared/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ pub const SIGNER_THRESHOLD: u8 = 2;
pub const TEST_RESHARE_BLOCK_NUMBER: u32 = 5;

/// Program version number, must be incremented if version number changes
pub const PROGRAM_VERSION_NUMBER: u8 = 0;
pub const PROGRAM_VERSION_NUMBER: u8 = 0;
2 changes: 1 addition & 1 deletion crates/test-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ hex ="0.4.3"
bincode ="1.3.3"
x25519-dalek ="2.0.1"
sp-runtime ={ version="32.0.0", default-features=false }
entropy-shared ={ version="0.2.0", path="../shared" }
entropy-shared={ version="0.2.0", path="../shared" }
2 changes: 1 addition & 1 deletion crates/test-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ use entropy_client::{
VERIFYING_KEY_LENGTH,
},
};
pub use entropy_shared::PROGRAM_VERSION_NUMBER;
use sp_core::{sr25519, Hasher, Pair};
use sp_runtime::traits::BlakeTwo256;
use std::{fs, path::PathBuf};
Expand All @@ -38,7 +39,6 @@ use subxt::{
utils::{AccountId32 as SubxtAccountId32, H256},
OnlineClient,
};
pub use entropy_shared::PROGRAM_VERSION_NUMBER;

#[derive(Parser, Debug, Clone)]
#[clap(
Expand Down

0 comments on commit 6e6fa9a

Please sign in to comment.