Skip to content

Commit b8b9f6f

Browse files
committed
Add SymbolInfo attributs
1 parent 2ae2a3b commit b8b9f6f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/binance/api/client/domain/general/SymbolInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,15 @@ public boolean isSpotTradingAllowed() {
123123
return isSpotTradingAllowed;
124124
}
125125

126-
public void setSpotTradingAllowed(boolean isSpotTradingAllowed) {
126+
public void setIsSpotTradingAllowed(boolean isSpotTradingAllowed) {
127127
this.isSpotTradingAllowed = isSpotTradingAllowed;
128128
}
129129

130130
public boolean isMarginTradingAllowed() {
131131
return isMarginTradingAllowed;
132132
}
133133

134-
public void setMarginTradingAllowed(boolean isMarginTradingAllowed) {
134+
public void setIsMarginTradingAllowed(boolean isMarginTradingAllowed) {
135135
this.isMarginTradingAllowed = isMarginTradingAllowed;
136136
}
137137

src/main/java/com/binance/api/client/impl/BinanceApiService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface BinanceApiService {
3030
@GET("/api/v1/time")
3131
Call<ServerTime> getServerTime();
3232

33-
@GET("/api/v1/exchangeInfo")
33+
@GET("/api/v3/exchangeInfo")
3434
Call<ExchangeInfo> getExchangeInfo();
3535

3636
@GET

0 commit comments

Comments
 (0)