Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ncitron committed Aug 24, 2024
1 parent 7aa4592 commit 317eda6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions consensus-core/src/consensus_core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use alloy::primitives::B256;
use eyre::Result;
use milagro_bls::PublicKey;
use ssz_types::{BitVector, FixedVector};
use tracing::info;
use tree_hash::TreeHash;
use zduny_wasm_timer::{SystemTime, UNIX_EPOCH};
use tracing::{info, warn};

use common::config::types::Forks;

Expand Down Expand Up @@ -129,7 +129,7 @@ pub fn apply_generic_update(
let should_apply_update = {
let has_majority = committee_bits * 3 >= 512 * 2;
if !has_majority {
tracing::warn!("skipping block with low vote count");
warn!("skipping block with low vote count");
}

let update_is_newer = update_finalized_slot > store.finalized_header.slot;
Expand Down

0 comments on commit 317eda6

Please sign in to comment.