Skip to content

Commit

Permalink
merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
eserilev committed Jan 2, 2024
1 parent 2e912f8 commit 3f86e3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions validator_client/src/block_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl<T: SlotClock + 'static, E: EthSpec> BlockService<T, E> {
// via the API.
warn!(
log,
"Missing pubkey for block randao";
"Missing pubkey for block";
"info" => "a validator may have recently been removed from this VC",
"pubkey" => ?pubkey,
"slot" => ?slot
Expand All @@ -668,7 +668,7 @@ impl<T: SlotClock + 'static, E: EthSpec> BlockService<T, E> {
}
Err(e) => {
return Err(BlockError::Recoverable(format!(
"Unable to produce randao reveal signature: {:?}",
"Unable to sign block: {:?}",
e
)))
}
Expand Down Expand Up @@ -793,7 +793,7 @@ impl<T: SlotClock + 'static, E: EthSpec> BlockService<T, E> {
"slot" => slot.as_u64(),
);
if proposer_index != Some(unsigned_block.proposer_index()) {
return Err(BlockError::Recoverable(
return Err(BlockError::Irrecoverable(
"Proposer index does not match block proposer. Beacon chain re-orged".to_string(),
));
}
Expand Down

0 comments on commit 3f86e3d

Please sign in to comment.