Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/etd 1546 containers pocket app csv impor #489

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
projectVersion=5.2.181
projectVersion=5.2.182
pf4jVersion=3.7.0
xchangeVersion=5.1.0
requiredEverytradeVersion=>=20210427
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public enum SupportedExchange {
OPEN_NODE("OpenNode", "opennode"),
KUCOIN("KuCoin", "kucoin"),
BITCOINRD("BitcoinRD", "bitcoinrd"),
KVAPAY("Kvapay", "kvapay");
KVAPAY("Kvapay", "kvapay"),
POCKETAPP("Pocket App", "pocketapp");


String displayName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
import static io.everytrade.server.model.SupportedExchange.OKX;
import static io.everytrade.server.model.SupportedExchange.OPEN_NODE;
import static io.everytrade.server.model.SupportedExchange.PAXFUL;
import static io.everytrade.server.model.SupportedExchange.POCKETAPP;
import static io.everytrade.server.model.SupportedExchange.POLONIEX;
import static io.everytrade.server.model.SupportedExchange.SHAKEPAY;
import static io.everytrade.server.model.SupportedExchange.SIMPLECOIN;
Expand Down Expand Up @@ -678,7 +679,7 @@ public class EverytradeCsvMultiParser implements ICsvParser {
.withSeparator(delimiter)
))
.parserFactory(() -> new DefaultUnivocityExchangeSpecificParser(PocketAppBeanV1.class, delimiter))
.supportedExchange(PAXFUL)
.supportedExchange(POCKETAPP)
.build());

/* POLONIEX */
Expand Down