Add missing fields in toString method

This commit is contained in:
chimp1984 2020-11-17 20:12:25 -05:00
parent 61c8d55a6f
commit 5b97b97349
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3

View file

@ -261,6 +261,8 @@ public final class Filter implements ProtectedStoragePayload, ExpirablePayload {
} else {
ownerPubKey = null;
}
log.error("Filter");
}
@Override
@ -348,6 +350,7 @@ public final class Filter implements ProtectedStoragePayload, ExpirablePayload {
return "Filter{" +
"\n bannedOfferIds=" + bannedOfferIds +
",\n bannedNodeAddress=" + bannedNodeAddress +
",\n bannedAutoConfExplorers=" + bannedAutoConfExplorers +
",\n bannedPaymentAccounts=" + bannedPaymentAccounts +
",\n bannedCurrencies=" + bannedCurrencies +
",\n bannedPaymentMethods=" + bannedPaymentMethods +
@ -365,12 +368,12 @@ public final class Filter implements ProtectedStoragePayload, ExpirablePayload {
",\n mediators=" + mediators +
",\n refundAgents=" + refundAgents +
",\n bannedAccountWitnessSignerPubKeys=" + bannedAccountWitnessSignerPubKeys +
",\n bannedPrivilegedDevPubKeys=" + bannedPrivilegedDevPubKeys +
",\n btcFeeReceiverAddresses=" + btcFeeReceiverAddresses +
",\n creationDate=" + creationDate +
",\n bannedPrivilegedDevPubKeys=" + bannedPrivilegedDevPubKeys +
",\n extraDataMap=" + extraDataMap +
",\n ownerPubKey=" + ownerPubKey +
",\n disableAutoConf=" + disableAutoConf +
",\n bannedAutoConfExplorers=" + bannedAutoConfExplorers +
"\n}";
}
}