mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
Added toString implementation for TransactionSimulatorResult (#5957)
Signed-off-by: Shritesh <shritesh.sj@gmail.com> Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
committed by
GitHub
parent
993a6d8c7e
commit
e7311f044a
@@ -79,4 +79,15 @@ public class TransactionSimulatorResult {
|
||||
public int hashCode() {
|
||||
return Objects.hash(transaction, result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "TransactionSimulatorResult{"
|
||||
+ "transaction="
|
||||
+ transaction
|
||||
+ ", "
|
||||
+ "result="
|
||||
+ result
|
||||
+ "}";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user