Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cray-cmd committed Dec 16, 2024
1 parent d1e20c7 commit debd1b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/include.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@

#include <request/crossMargin/transferorapply.h>
#include <request/crossMargin/loanorders.h>
#include <request/crossmargin/crossMarginGeneralReplayLoanOptionalRequest.h>
#include <request/crossmargin/crossMarginGeneralReplayLoanRecordsOptionalRequest.h>
#include <request/crossMargin/crossMarginGeneralReplayLoanOptionalRequest.h>
#include <request/crossMargin/crossMarginGeneralReplayLoanRecordsOptionalRequest.h>
#include <response/crossmargin/loanorder.h>
#include <response/crossmargin/balance.h>
#include <response/crossmargin/crossMarginGeneralReplyLoanResponse.h>
Expand Down
2 changes: 1 addition & 1 deletion src/client/websocketMarketClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ void WebsocketMarketClient::reqDetail(const char *symbol, const std::function<vo
candlestick.vol = data["vol"].GetString();
candlestick.high = data["high"].GetString();
candlestick.open = data["open"].GetString();
candlestick.version = atol(tick["version"].GetString());
candlestick.version = atol(data["version"].GetString());
handler(candlestick);
});
th.detach();
Expand Down

0 comments on commit debd1b7

Please sign in to comment.