Skip to content

v1.4 GA Release

Compare
Choose a tag to compare
@aleibovici aleibovici released this 18 Aug 03:37
· 76 commits to main since this 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@%PROCEDUREGetThreadTransactionByThreadID(IN in_param_ThreadID varchar(45)) BEGIN DECLARE declared_in_param_ThreadID CHAR(50); SET declared_in_param_ThreadID = in_param_ThreadID; SELECT thread.OrderIDASOrderID, thread.CummulativeQuoteQtyASCummulativeQuoteQty, thread.PriceASPrice, thread.ExecutedQuantityASExecutedQuantityFROMthreadLEFT JOINorders OrdersONthread.OrderID=Orders.OrderIDWHEREthread.ThreadID= declared_in_param_ThreadID ORDER BYthread.PriceASC; END