Skip to content

Commit

Permalink
Correct a butchered undo/redo
Browse files Browse the repository at this point in the history
  • Loading branch information
brianp committed Jul 6, 2022
1 parent bbd9483 commit 7845623
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ impl ContractWorkerManager {
if tip.height_of_longest_chain >
checkpoint.mined_height + constitution.checkpoint_params.abandoned_interval
{
match self.global_db
.update_contract_state(contract_id, ContractState::Abandoned)
self.global_db
.update_contract_state(contract_id, ContractState::Abandoned)?;

info!(
target: LOG_TARGET,
Expand Down

0 comments on commit 7845623

Please sign in to comment.