From 24e5f193be96c0fab4059216624f2a9699618a56 Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Wed, 9 Mar 2022 12:07:33 -0300 Subject: [PATCH] Exclude persistedAccountName field from json payment acct forms This recently added field is automatically set inside PaymentAccount. It should not be included in the payment acct json forms used by API clients. Based on branch `master`. --- core/src/main/java/bisq/core/api/model/PaymentAccountForm.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/bisq/core/api/model/PaymentAccountForm.java b/core/src/main/java/bisq/core/api/model/PaymentAccountForm.java index 2b4610572c9..df6ef0ec215 100644 --- a/core/src/main/java/bisq/core/api/model/PaymentAccountForm.java +++ b/core/src/main/java/bisq/core/api/model/PaymentAccountForm.java @@ -135,6 +135,7 @@ public class PaymentAccountForm { "paymentAccountPayload", "paymentMethod", "paymentMethodId", // Will be included, but handled differently. + "persistedAccountName", // Automatically set in PaymentAccount.onPersistChanges(). "selectedTradeCurrency", // May be included, but handled differently. "tradeCurrencies", // May be included, but handled differently. "HOLDER_NAME",