Skip to content

Commit

Permalink
Use 8-byte SHA in engine API
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Jun 27, 2024
1 parent cf35859 commit fe2886d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/node/builder/src/launch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use reth_node_api::FullNodeTypes;
use reth_node_core::{
dirs::{ChainPath, DataDirPath},
exit::NodeExitFuture,
version::{CARGO_PKG_VERSION, CLIENT_CODE, NAME_CLIENT, VERGEN_GIT_SHA},
version::{CARGO_PKG_VERSION, CLIENT_CODE, NAME_CLIENT, VERGEN_GIT_SHA_8_BYTES},
};
use reth_node_events::{cl::ConsensusLayerHealthEvents, node};
use reth_primitives::format_ether;
Expand Down Expand Up @@ -292,7 +292,7 @@ where
code: CLIENT_CODE,
name: NAME_CLIENT.to_string(),
version: CARGO_PKG_VERSION.to_string(),
commit: VERGEN_GIT_SHA.to_string(),
commit: VERGEN_GIT_SHA_8_BYTES.to_string(),
};
let engine_api = EngineApi::new(
ctx.blockchain_db().clone(),
Expand Down

0 comments on commit fe2886d

Please sign in to comment.