Skip to content

Commit

Permalink
Merge pull request #464 from crypto-chassis/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
cryptochassis committed Mar 18, 2024
2 parents e007310 + 522e303 commit 5ce8450
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions README.md
@@ -1,7 +1,3 @@
# Notifications:
* New features: added REST endpoints for fetching historical public trades, historical/recent candlesticks, and market depth (i.e. order book snapshot).
* Small breaking change to correct an English typo: In `SessionOptions`, the substring "MilliSeconds" has been renamed to "Milliseconds".

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
Expand Down
Expand Up @@ -305,7 +305,7 @@ class ExecutionManagementServiceOkx : public ExecutionManagementService {
element.insert(CCAPI_EM_ASSET, x["ccy"].GetString());
std::string availEq = x["availEq"].GetString();
element.insert(CCAPI_EM_QUANTITY_AVAILABLE_FOR_TRADING, availEq.empty() ? x["availBal"].GetString() : availEq);
element.insert(CCAPI_EM_QUANTITY_TOTAL, x["eq"].GetString());
element.insert(CCAPI_EM_QUANTITY_TOTAL, x["cashBal"].GetString());
elementList.emplace_back(std::move(element));
}
} break;
Expand Down

0 comments on commit 5ce8450

Please sign in to comment.