diff --git a/crates/consensus/src/header.rs b/crates/consensus/src/header.rs index 31e8d3e366d..e921cb3e00f 100644 --- a/crates/consensus/src/header.rs +++ b/crates/consensus/src/header.rs @@ -384,7 +384,7 @@ impl Header { /// /// WARNING: This method does not perform validation whether the hash is correct. #[inline] - pub const fn seal(self, hash: B256) -> Sealed
{ + pub const fn seal(self, hash: B256) -> Sealed { Sealed::new_unchecked(self, hash) } }