knowm / XChange

XChange is a Java library providing a streamlined API for interacting with 60+ Bitcoin and Altcoin exchanges providing a consistent interface for trading and accessing market data.
http://knowm.org/open-source/xchange/
MIT License
3.81k stars 1.93k forks source link

[Bitstamp] include txid in toString() #4896

Closed tross-nydig closed 4 weeks ago

tross-nydig commented 1 month ago

Small followup to the recent PR that added txid to the WithdrawalRequest object.

bigscoop commented 4 weeks ago

Hi. Please use @ToString from lombok and delete the method toString()

tross-nydig commented 4 weeks ago

Hi. Please use @ToString from lombok and delete the method toString()

Great idea, the previous toString() also included the additional derived status enum (i.e. status=finished) but I was able to keep it in there by using the@ToString.Include annotation.