Skip to content

Commit

Permalink
fix(ARCO-283): fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
pawellewandowski98 committed Nov 22, 2024
1 parent 71d7ef8 commit b64abcd
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions internal/metamorph/processor_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,7 @@ func shouldUpdateCompetingTxs(new, found store.UpdateStatus) bool {
}

func shouldUpdateStatus(new, found store.UpdateStatus) bool {
if new.Status > found.Status {
return true
}

return false
return new.Status > found.Status
}

// unorderedEqual checks if two string slices contain
Expand Down

0 comments on commit b64abcd

Please sign in to comment.