Merge conflicts'

This commit is contained in:
Eitan Seri-Levi
2026-04-23 02:34:34 +09:00
parent 755b8d8510
commit ca59cf453e
5 changed files with 22 additions and 9 deletions

View File

@@ -1506,6 +1506,11 @@ where
}
}
/// Returns whether the payload envelope has been received for the given block.
pub fn is_payload_received(&self, block_root: &Hash256) -> bool {
self.proto_array.is_payload_received(block_root)
}
/// Returns whether the proposer should extend the execution payload chain of the given block.
pub fn should_extend_payload(&self, block_root: &Hash256) -> Result<bool, Error<T::Error>> {
let proposer_boost_root = self.fc_store.proposer_boost_root();