mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-19 23:36:00 -04:00
Add null checks
This commit is contained in:
parent
5d4d7607f3
commit
19eb61f30c
@ -74,8 +74,8 @@ public class ProtectedStorageEntry implements Payload {
|
||||
"expirablePayload=" + storagePayload +
|
||||
", timeStamp=" + timeStamp +
|
||||
", sequenceNumber=" + sequenceNumber +
|
||||
", ownerPubKey.hashCode()=" + ownerPubKey.hashCode() +
|
||||
", signature.hashCode()=" + Arrays.toString(signature).hashCode() +
|
||||
", ownerPubKey.hashCode()=" + (ownerPubKey != null ? ownerPubKey.hashCode() : "null") +
|
||||
", signature.hashCode()=" + (signature != null ? Arrays.toString(signature).hashCode() : "null") +
|
||||
'}';
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user