Merge branch 'gloas-payload-processing' into gloas-devnet-0

This commit is contained in:
Eitan Seri- Levi
2026-02-13 23:50:23 -08:00

View File

@@ -5,7 +5,7 @@ use fork_choice::PayloadVerificationStatus;
use logging::crit; use logging::crit;
use slot_clock::SlotClock; use slot_clock::SlotClock;
use store::StoreOp; use store::StoreOp;
use tracing::{debug, error, info_span, instrument}; use tracing::{debug, error, info, info_span, instrument, warn};
use types::{BeaconState, BlockImportSource, Hash256, SignedBeaconBlock, Slot}; use types::{BeaconState, BlockImportSource, Hash256, SignedBeaconBlock, Slot};
use super::{ use super::{
@@ -112,11 +112,11 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
match import_envelope.await { match import_envelope.await {
// The block was successfully verified and imported. Yay. // The block was successfully verified and imported. Yay.
Ok(status @ AvailabilityProcessingStatus::Imported(block_root)) => { Ok(status @ AvailabilityProcessingStatus::Imported(block_root)) => {
debug!( info!(
?block_root, ?block_root,
%block_slot, %block_slot,
source = %block_source, source = %block_source,
"Envelope imported" "Execution payload envelope imported"
); );
metrics::inc_counter(&metrics::ENVELOPE_PROCESSING_SUCCESSES); metrics::inc_counter(&metrics::ENVELOPE_PROCESSING_SUCCESSES);
@@ -149,7 +149,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
} }
// The block failed verification. // The block failed verification.
Err(other) => { Err(other) => {
debug!(reason = other.to_string(), " Envelope rejected"); warn!(reason = other.to_string(), "Execution payload envelope rejected");
Err(other) Err(other)
} }
} }