fix bug with map

This commit is contained in:
Manfred Karrer 2015-11-18 16:43:28 +01:00
parent e87f99d2a5
commit b235beb56b
3 changed files with 10 additions and 3 deletions

View file

@ -145,9 +145,14 @@ public final class Arbitrator implements PubKeyProtectedExpirablePayload {
@Override
public String toString() {
return "Arbitrator{" +
"arbitratorAddress='" + arbitratorAddress + '\'' +
"arbitratorAddress=" + arbitratorAddress +
", languageCodes=" + languageCodes +
", btcAddress='" + btcAddress + '\'' +
", registrationDate=" + registrationDate +
", btcPubKey.hashCode()=" + Arrays.toString(btcPubKey).hashCode() +
", pubKeyRing.hashCode()=" + pubKeyRing.hashCode() +
", registrationSignature.hashCode()='" + registrationSignature.hashCode() + '\'' +
", registrationPubKey.hashCode()=" + Arrays.toString(registrationPubKey).hashCode() +
'}';
}
}