(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).
Edited by Emiliano Balbuena
Merge request reports
Activity
added 1 commit
- 6b846ec1 - (feat): Refund on rejection and notifications on all steps
added 1 commit
- 6fbcf63c - (refactor): Tweak flow and add all Request props to DB
mentioned in merge request front!652 (merged)
added ProductWallet 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
added 1 commit
- ce560990 - (chore): Change trigger_error() to error_log() on MagicAttributes
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
Please register or sign in to reply