Added slot to logs

This commit is contained in:
Eitan Seri- Levi
2026-02-24 10:51:09 -08:00
parent 1d3b5776a4
commit 6e89ba63be
2 changed files with 5 additions and 9 deletions

View File

@@ -62,7 +62,7 @@ impl<T: BeaconChainTypes> PayloadNotifier<T> {
} else {
let block_root = self.envelope.message.beacon_block_root;
let request = Self::build_new_payload_request(&self.envelope, &self.block)?;
notify_new_payload(&self.chain, block_root, request).await
notify_new_payload(&self.chain, block_root, self.envelope.slot(), request).await
}
}