(feat): Withdrawal status support
Schema Changes
ALTER TABLE minds.withdrawals ADD (status text, address text, gas varint);
CREATE MATERIALIZED VIEW minds.withdrawals_by_status AS
    SELECT *
    FROM minds.withdrawals
    WHERE status IS NOT NULL AND user_guid IS NOT NULL AND timestamp IS NOT NULL AND tx IS NOT NULL
    PRIMARY KEY (status, timestamp, user_guid, tx)
    WITH CLUSTERING ORDER BY (timestamp ASC, user_guid ASC, tx ASC);Testing
TBD
Issues
- Closes #1097 (closed).
- added scoped label 
- added 1 commit - 6b846ec1 - (feat): Refund on rejection and notifications on all steps
 
- changed the description 
- added 1 commit - 6fbcf63c - (refactor): Tweak flow and add all Request props to DB
 
- mentioned in merge request front!652 (merged) 
- added scoped label 
- added 10 commits - 
5c5154f4...01c4ac21 - 9 commits from branch master
- 3e857fd2 - Merge remote-tracking branch 'origin/master' into goal/withdrawals-approval
 
- 
5c5154f4...01c4ac21 - 9 commits from branch 
- added 1 commit - e26c9a0e - (fix): Filter withdrawals by username on admin endpoint
 
- changed the description 
- unmarked as a Work In Progress 
- added 1 commit - ce560990 - (chore): Change trigger_error() to error_log() on MagicAttributes
 
- added scoped label 
- added 16 commits - 
e5f224b7...52a592b9 - 15 commits from branch master
- 0fac4029 - Merge remote-tracking branch 'origin/master' into goal/withdrawals-approval
 
- 
e5f224b7...52a592b9 - 15 commits from branch 
- approved this merge request 
- mentioned in commit 723cdd2d 
- merged 
Please register or sign in to reply
 
  
  
 