Example #1
0
 /** @return - human readable representation of the address */
 @Override
 public String toString() {
   try {
     return toSatoshiStyle(this);
   } catch (ValidationException e) {
     return network.name() + ":" + type.name() + ":" + ByteUtils.toHex(bytes);
   }
 }