From e3f60aad38e0db1d7923cc66dfe5fca0671799e1 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Mon, 6 Nov 2023 16:30:07 +0100 Subject: [PATCH] todo notice --- .../lib/multivm/src/interface/types/outputs/execution_state.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/lib/multivm/src/interface/types/outputs/execution_state.rs b/core/lib/multivm/src/interface/types/outputs/execution_state.rs index c76e6370232..066de92ffbe 100644 --- a/core/lib/multivm/src/interface/types/outputs/execution_state.rs +++ b/core/lib/multivm/src/interface/types/outputs/execution_state.rs @@ -20,7 +20,8 @@ pub struct CurrentExecutionState { pub total_log_queries: usize, /// Number of cycles used by the VM. pub cycles_used: u32, - /// Sorted & deduplicated events logs for batch + /// Sorted & deduplicated events logs for batch. Note, that this is a more "low-level" representation of + /// the `events` field of this struct TODO(PLA-649): refactor to remove duplication of data. pub deduplicated_events_logs: Vec, /// Refunds returned by `StorageOracle`. pub storage_refunds: Vec,