@@ -29,6 +29,7 @@ use clarity::util::hash::Sha256Sum;
29
29
use clarity:: util:: secp256k1:: MessageSignature ;
30
30
use clarity:: vm:: types:: { QualifiedContractIdentifier , TupleData } ;
31
31
use clarity:: vm:: Value ;
32
+ use once_cell:: sync:: Lazy ;
32
33
use serde:: { Deserialize , Serialize } ;
33
34
use stacks_common:: address:: {
34
35
b58, AddressHashMode , C32_ADDRESS_VERSION_MAINNET_MULTISIG ,
@@ -37,7 +38,6 @@ use stacks_common::address::{
37
38
} ;
38
39
use stacks_common:: define_u8_enum;
39
40
use stacks_common:: types:: chainstate:: StacksPrivateKey ;
40
- use once_cell:: sync:: Lazy ;
41
41
42
42
extern crate alloc;
43
43
@@ -48,11 +48,10 @@ const BUILD_TYPE: &'static str = "debug";
48
48
#[ cfg( not( debug_assertions) ) ]
49
49
const BUILD_TYPE : & ' static str = "release" ;
50
50
51
-
52
51
static VERSION_STRING : Lazy < String > = Lazy :: new ( || {
53
52
let pkg_version = option_env ! ( "STACKS_NODE_VERSION" ) . unwrap_or ( env ! ( "CARGO_PKG_VERSION" ) ) ;
54
53
let git_branch = GIT_BRANCH . unwrap_or ( "" ) ;
55
- let git_commit = GIT_COMMIT . unwrap_or ( "" ) ;
54
+ let git_commit = GIT_COMMIT . unwrap_or ( "" ) ;
56
55
format ! (
57
56
"{} ({}:{}, {} build, {} [{}])" ,
58
57
pkg_version,
0 commit comments