mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-13 03:52:16 -04:00
Add toString
This commit is contained in:
parent
3c710b8367
commit
d96b3a9e4b
1 changed files with 9 additions and 0 deletions
|
@ -73,4 +73,13 @@ public final class FiatTransferStartedMessage extends TradeMessage implements Ma
|
|||
result = 31 * result + (uid != null ? uid.hashCode() : 0);
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "FiatTransferStartedMessage{" +
|
||||
"buyerPayoutAddress='" + buyerPayoutAddress + '\'' +
|
||||
", senderNodeAddress=" + senderNodeAddress +
|
||||
", uid='" + uid + '\'' +
|
||||
"} " + super.toString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue