We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aefb23 commit 9752e03Copy full SHA for 9752e03
src/kernel.rs
@@ -82,7 +82,7 @@ impl EraInfo {
82
verify(public_key, &signature_data, signature)?;
83
84
// If the block has `block_signature_weight >= 1/3 * total_weight`, its okay
85
- if U512::from(3) * block_signature_weight >= * self.total_weight {
+ if U512::from(3) * block_signature_weight >= self.total_weight {
86
return Ok(());
87
}
88
0 commit comments