From 3739b026db5520d539b40c0c81f6373d8d966544 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Mon, 6 Nov 2023 15:48:04 +0100 Subject: [PATCH 1/2] use contracts from main --- etc/system-contracts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/system-contracts b/etc/system-contracts index de597eddb79..3377d27d7dc 160000 --- a/etc/system-contracts +++ b/etc/system-contracts @@ -1 +1 @@ -Subproject commit de597eddb79491bb22bb237b8bcc4afea8cda26f +Subproject commit 3377d27d7dc26b9f0e1ec0637af34dbc4cb8c2e3 From e3f60aad38e0db1d7923cc66dfe5fca0671799e1 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Mon, 6 Nov 2023 16:30:07 +0100 Subject: [PATCH 2/2] 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,