mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Add missing fields in toString method
This commit is contained in:
parent
61c8d55a6f
commit
5b97b97349
1 changed files with 5 additions and 2 deletions
|
@ -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}";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue