Skip to content

Commit 2cc9ff3

Browse files
committed
fix formatting
1 parent 081dc14 commit 2cc9ff3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

stacks-signer/src/cli.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ use clarity::util::hash::Sha256Sum;
2929
use clarity::util::secp256k1::MessageSignature;
3030
use clarity::vm::types::{QualifiedContractIdentifier, TupleData};
3131
use clarity::vm::Value;
32+
use once_cell::sync::Lazy;
3233
use serde::{Deserialize, Serialize};
3334
use stacks_common::address::{
3435
b58, AddressHashMode, C32_ADDRESS_VERSION_MAINNET_MULTISIG,
@@ -37,7 +38,6 @@ use stacks_common::address::{
3738
};
3839
use stacks_common::define_u8_enum;
3940
use stacks_common::types::chainstate::StacksPrivateKey;
40-
use once_cell::sync::Lazy;
4141

4242
extern crate alloc;
4343

@@ -48,11 +48,10 @@ const BUILD_TYPE: &'static str = "debug";
4848
#[cfg(not(debug_assertions))]
4949
const BUILD_TYPE: &'static str = "release";
5050

51-
5251
static VERSION_STRING: Lazy<String> = Lazy::new(|| {
5352
let pkg_version = option_env!("STACKS_NODE_VERSION").unwrap_or(env!("CARGO_PKG_VERSION"));
5453
let git_branch = GIT_BRANCH.unwrap_or("");
55-
let git_commit = GIT_COMMIT.unwrap_or("");
54+
let git_commit = GIT_COMMIT.unwrap_or("");
5655
format!(
5756
"{} ({}:{}, {} build, {} [{}])",
5857
pkg_version,

0 commit comments

Comments
 (0)