Skip to content

Commit

Permalink
[block-stm] Do not set incorrect use on storage errors (#15855)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemitenkov authored Feb 1, 2025
1 parent fd0d550 commit eda471a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aptos-move/block-executor/src/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1090,10 +1090,9 @@ impl<'a, T: Transaction, S: TStateView<Key = T::Key>> LatestView<'a, T, S> {
"[VM, StateView] Error getting data from storage for {:?}",
state_key
);
self.mark_incorrect_use();
}

ret.map_err(Into::into)
ret
}

fn patch_base_value(
Expand Down

0 comments on commit eda471a

Please sign in to comment.