Skip to content

Commit

Permalink
Getting rid of spurious *
Browse files Browse the repository at this point in the history
  • Loading branch information
xcthulhu committed Jun 11, 2024
1 parent 7aefb23 commit 9752e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl EraInfo {
verify(public_key, &signature_data, signature)?;

// If the block has `block_signature_weight >= 1/3 * total_weight`, its okay
if U512::from(3) * block_signature_weight >= * self.total_weight {
if U512::from(3) * block_signature_weight >= self.total_weight {
return Ok(());
}
}
Expand Down

0 comments on commit 9752e03

Please sign in to comment.