Skip to content

Commit 9752e03

Browse files
committed
Getting rid of spurious *
1 parent 7aefb23 commit 9752e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/kernel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl EraInfo {
8282
verify(public_key, &signature_data, signature)?;
8383

8484
// If the block has `block_signature_weight >= 1/3 * total_weight`, its okay
85-
if U512::from(3) * block_signature_weight >= * self.total_weight {
85+
if U512::from(3) * block_signature_weight >= self.total_weight {
8686
return Ok(());
8787
}
8888
}

0 commit comments

Comments
 (0)