diff --git a/massa-execution-worker/src/active_history.rs b/massa-execution-worker/src/active_history.rs index 08aeeb923a..3841a98dd1 100644 --- a/massa-execution-worker/src/active_history.rs +++ b/massa-execution-worker/src/active_history.rs @@ -444,7 +444,6 @@ mod test { executed_ops_changes: Default::default(), executed_denunciations_changes: Default::default(), execution_trail_hash_change: Default::default(), - deferred_call_changes: Default::default(), }; let state_changes_2 = StateChanges { ledger_changes: Default::default(), @@ -454,7 +453,6 @@ mod test { executed_ops_changes: Default::default(), executed_denunciations_changes: Default::default(), execution_trail_hash_change: Default::default(), - deferred_call_changes: Default::default(), }; let exec_output_1 = ExecutionOutput { diff --git a/massa-module-cache/src/hd_cache.rs b/massa-module-cache/src/hd_cache.rs index 5a238a3509..201d7c8902 100644 --- a/massa-module-cache/src/hd_cache.rs +++ b/massa-module-cache/src/hd_cache.rs @@ -58,7 +58,7 @@ impl HDCache { /// * path: where to store the db /// * max_entry_count: maximum number of entries we want to keep in the db /// * amount_to_remove: how many entries are removed when `entry_count` reaches `max_entry_count` - /// + /// /// Note: entry_count refers to the number of modules stored in the db, which is half the number of (key, value) pairs in the db pub fn new(path: PathBuf, max_entry_count: usize, snip_amount: usize) -> Self { let mut db = DB::open_default(path.clone()).expect(OPEN_ERROR);