- Fixed: Trade balance not updated correctly - Fixed: sell-chips were not checked correctly on placing sell orders - Fixed: sell-chips not added when distributed - Fixed: sell-chips (FLO) not added when deposited by launch-seller - Fixed various bugs - initialPrice will be added to priceHistory table (initially)
26 lines
531 B
SQL
26 lines
531 B
SQL
/* Node data */
|
|
TRUNCATE _backup;
|
|
TRUNCATE _backupCache;
|
|
TRUNCATE AuditTrade;
|
|
TRUNCATE BuyOrder;
|
|
TRUNCATE Distributors;
|
|
TRUNCATE InputFLO;
|
|
TRUNCATE InputToken;
|
|
TRUNCATE OutputFLO;
|
|
TRUNCATE OutputToken;
|
|
TRUNCATE PriceHistory;
|
|
TRUNCATE RequestLog;
|
|
TRUNCATE SellOrder;
|
|
TRUNCATE UserBalance;
|
|
TRUNCATE UserSession;
|
|
TRUNCATE UserTag;
|
|
TRUNCATE TransferTransactions;
|
|
TRUNCATE TradeTransactions;
|
|
TRUNCATE SellChips;
|
|
|
|
/* Blockchain data */
|
|
TRUNCATE LastTx;
|
|
TRUNCATE NodeList;
|
|
TRUNCATE TrustedList;
|
|
DELETE FROM TagList;
|
|
DELETE FROM AssetList; |