Skip to content

Commit

Permalink
Remove debug formatting for roots
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jun 15, 2022
1 parent 7c16b55 commit 3f141ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon_node/client/src/notifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ pub fn spawn_notifier<T: BeaconChainTypes>(
"Head is optimistic";
"info" => "chain not fully verified, \
block and attestation production temporarily disabled",
"execution_block_hash" => ?hash,
"execution_block_hash" => hash,
);
format!("{} (unverified)", hash)
}
Expand All @@ -280,7 +280,7 @@ pub fn spawn_notifier<T: BeaconChainTypes>(
log,
"Head execution payload is invalid";
"msg" => "this scenario may be unrecoverable",
"execution_block_hash" => ?hash,
"execution_block_hash" => hash,
);
format!("{} (invalid)", hash)
}
Expand Down

0 comments on commit 3f141ff

Please sign in to comment.