diff --git a/testing-framework/workflows/src/workloads/da/expectation.rs b/testing-framework/workflows/src/workloads/da/expectation.rs index 87d7e73..f16b10d 100644 --- a/testing-framework/workflows/src/workloads/da/expectation.rs +++ b/testing-framework/workflows/src/workloads/da/expectation.rs @@ -248,9 +248,13 @@ impl Expectation for DaWorkloadExpectation { } tracing::info!( - planned = planned_total, - inscriptions = planned_total - missing_inscriptions.len(), - blobs_observed = observed_total_blobs, + planned_channels = planned_total, + channels_with_blobs = channels_with_blobs.len(), + inscriptions_observed = planned_total - missing_inscriptions.len(), + observed_total_blobs, + expected_total_blobs, + required_blobs, + observed_blocks, "DA inclusion expectation satisfied" ); diff --git a/testing-framework/workflows/src/workloads/transaction/expectation.rs b/testing-framework/workflows/src/workloads/transaction/expectation.rs index e06cfe5..1790ed4 100644 --- a/testing-framework/workflows/src/workloads/transaction/expectation.rs +++ b/testing-framework/workflows/src/workloads/transaction/expectation.rs @@ -156,6 +156,7 @@ impl Expectation for TxInclusionExpectation { observed, required, expected = state.expected, + min_inclusion_ratio = MIN_INCLUSION_RATIO, "tx inclusion expectation satisfied" ); Ok(())