Skip to content

Commit

Permalink
Added toString implementation for TransactionSimulatorResult (#5957)
Browse files Browse the repository at this point in the history
Signed-off-by: Shritesh <[email protected]>
Co-authored-by: Sally MacFarlane <[email protected]>
  • Loading branch information
Shritesh99 and macfarla authored Sep 29, 2023
1 parent 993a6d8 commit e7311f0
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,15 @@ public boolean equals(final Object o) {
public int hashCode() {
return Objects.hash(transaction, result);
}

@Override
public String toString() {
return "TransactionSimulatorResult{"
+ "transaction="
+ transaction
+ ", "
+ "result="
+ result
+ "}";
}
}

0 comments on commit e7311f0

Please sign in to comment.