v0.1.0-pre.020

This commit is contained in:
2026-07-24 22:01:07 +02:00
parent fa2d9d8ecd
commit 4190b2c0ce
84 changed files with 3314 additions and 274 deletions

View File

@@ -1,5 +1,5 @@
// file: kb-lib/src/materializer/staking/core.rs
// version: 7
// version: 8
//! Instruction-level staking projections for native Stake and Vote observations.
@@ -162,7 +162,7 @@ impl crate::MtApiEventMaterializer for crate::MtStakingMaterializer {
std::option::Option::Some(value) => value,
std::option::Option::None => {
tracing::debug!(
target: crate::MT_STAKING_TRACING_TARGET,
target: crate::TRACING_TARGET_MATERIALIZER_STAKING,
action = "materialize_staking",
surface_code = %observation.event.surface_code.0.as_str(),
entry_code = %observation.event.event_name.0.as_str(),
@@ -177,7 +177,7 @@ impl crate::MtApiEventMaterializer for crate::MtStakingMaterializer {
}
if observation.transaction_failed || !observation.observation_committed {
tracing::debug!(
target: crate::MT_STAKING_TRACING_TARGET,
target: crate::TRACING_TARGET_MATERIALIZER_STAKING,
action = "materialize_staking",
surface_code = %observation.event.surface_code.0.as_str(),
entry_code = %observation.event.event_name.0.as_str(),
@@ -225,7 +225,7 @@ impl crate::MtApiEventMaterializer for crate::MtStakingMaterializer {
}),
};
tracing::debug!(
target: crate::MT_STAKING_TRACING_TARGET,
target: crate::TRACING_TARGET_MATERIALIZER_STAKING,
action = "materialize_staking",
surface_code = %observation.event.surface_code.0.as_str(),
entry_code = %observation.event.event_name.0.as_str(),