Skip to content

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Feb 28, 2025
1 parent 215f5cc commit 4e13354
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public boolean isContractError() {

@Override
public int hashCode() {
return Objects.hash(name, inputs);
return 31 * name.hashCode() + inputs.hashCode();
}

@Override
Expand Down

0 comments on commit 4e13354

Please sign in to comment.