Skip to content

Commit

Permalink
revert: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Jun 14, 2024
1 parent 1084649 commit a2e26f7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ where

// Based on the deterministic masternode list at the given height, a quorum must be selected that was active at the time this block was mined

let quorums = selected_quorums.next().ok_or_else(|| {
let probable_quorums = selected_quorums.next().ok_or_else(|| {
Error::Execution(ExecutionError::CorruptedCodeExecution(
"No quorums selected for chain lock signature verification for specified height",
))
})?;

let Some((quorum_hash, quorum)) = quorums.choose_quorum(request_id.as_ref()) else {
let Some((quorum_hash, quorum)) = probable_quorums.choose_quorum(request_id.as_ref())
else {
return Ok(None);
};

Expand Down

0 comments on commit a2e26f7

Please sign in to comment.