v1.4 GA Release
- Various exchange error handlers were added for better stability
- Cryptocurrency funds are now displayed on the UI
- Executed Quantity not displayed for each transaction on the UI
This new release requires a small database update if you are already running Cryptopump in production.
Open the GetThreadTransactionByThreadID Stored Procedure ans replace its content with:
CREATE DEFINER=
root@
%PROCEDURE
GetThreadTransactionByThreadID(IN in_param_ThreadID varchar(45)) BEGIN DECLARE declared_in_param_ThreadID CHAR(50); SET declared_in_param_ThreadID = in_param_ThreadID; SELECT
thread.
OrderIDAS
OrderID,
thread.
CummulativeQuoteQtyAS
CummulativeQuoteQty,
thread.
PriceAS
Price,
thread.
ExecutedQuantityAS
ExecutedQuantityFROM
threadLEFT JOIN
orders
OrdersON
thread.
OrderID=
Orders.
OrderIDWHERE
thread.
ThreadID= declared_in_param_ThreadID ORDER BY
thread.
PriceASC; END