Skip to content

Commit

Permalink
[storage] fix ensure msg (#3425)
Browse files Browse the repository at this point in the history
  • Loading branch information
lightmark authored Sep 8, 2022
1 parent 93a0ee2 commit 75b3da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/aptosdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,7 @@ impl DbWriter for AptosDB {
let mut buffered_state = self.state_store.buffered_state().lock();
ensure!(
base_state_version == buffered_state.current_state().base_version,
"base_state_version {:?} does not equal to the base_version {:?} in buffered state{:?}",
"base_state_version {:?} does not equal to the base_version {:?} in buffered state with current version {:?}",
base_state_version,
buffered_state.current_state().base_version,
buffered_state.current_state().current_version,
Expand Down

0 comments on commit 75b3da7

Please sign in to comment.