Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/database/src/states/transition_account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl TransitionAccount {
/// Update new values of transition. Don't override old values.
/// Both account info and old storages need to be left intact.
pub fn update(&mut self, other: Self) {
self.info.clone_from(&other.info);
self.info = other.info;
self.status = other.status;

// if transition is from some to destroyed drop the storage.
Expand Down
Loading