Remove unused params

This commit is contained in:
Michael Sproul
2026-03-26 10:01:33 +11:00
parent 324c61d2e2
commit 66f71b3f22
2 changed files with 0 additions and 6 deletions

View File

@@ -391,10 +391,7 @@ impl ProtoArray {
mut deltas: Vec<NodeDelta>,
best_justified_checkpoint: Checkpoint,
best_finalized_checkpoint: Checkpoint,
_new_justified_balances: &JustifiedBalances,
_proposer_boost_root: Hash256,
current_slot: Slot,
_spec: &ChainSpec,
) -> Result<(), Error> {
if deltas.len() != self.indices.len() {
return Err(Error::InvalidDeltaLen {

View File

@@ -658,10 +658,7 @@ impl ProtoArrayForkChoice {
deltas,
justified_checkpoint,
finalized_checkpoint,
new_balances,
proposer_boost_root,
current_slot,
spec,
)
.map_err(|e| format!("find_head apply_score_changes failed: {:?}", e))?;