File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
src/main/java/com/memesphere/domain/search Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public static SearchListPreviewResponse toSearchListPreviewDTO(MemeCoin memeCoin
6262 .name (memeCoin .getName ())
6363 .symbol (memeCoin .getSymbol ())
6464 .currentPrice (chartData .getPrice ())
65- .priceChange (chartData .getPriceChangeRate ())
65+ .priceChangeRate (chartData .getPriceChangeRate ())
6666 .weightedAveragePrice (chartData .getWeighted_average_price ())
6767 .volume (chartData .getVolume ())
6868 .isCollected (isCollected )
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ public class SearchListPreviewResponse {
2626 BigDecimal weightedAveragePrice ;
2727 @ Schema (description = "차트 데이터의 volume" , example = "5" )
2828 BigDecimal volume ;
29- @ Schema (description = "차트 데이터의 price_change" , example = "500" )
30- BigDecimal priceChange ;
3129 @ Schema (description = "차트 데이터의 price_change_rate" , example = "+2.4%" )
3230 BigDecimal priceChangeRate ;
3331 @ Schema (description = "collection에 해당 밈코인 유무" , example = "true / false" )
You can’t perform that action at this time.
0 commit comments