You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when a user with create permission deletes a pending request they created, they are unable to see that request in the history table. This is because we index the DAO proposals the same way as the 'other' proposals and rfps. We get the contract state on the blockheight of the receipt from the RPC for every transaction. A problem presented itself when indexing the sputnik contract in this way. When an DAO member votes to remove the proposal it gets deleted from contract and the RPC returns an contract panic ERROR_NO_PROPOSAL.
User Story
As a user I would like to view which proposals were deleted in the history table.
Acceptance Criteria
When a user with create permission deletes a pending request, they should see a successful confirmation screen upon deletion with a link to the record
Clicking on the link to the record will take the user to the history table and highlight the deleted request
The successful delete request record should appear in the history table with a "Delete" status
Attachment
Screenshare.-.2025-01-22.11_56_36.AM.mp4
Technical Info
The number of indexed proposals should be the same as the number that gets returned by the get_last_proposal_id. Ensuring that even the deleted proposals are indexed.
The text was updated successfully, but these errors were encountered:
Note – this might have a dependency on #157.
Background
Currently, when a user with create permission deletes a pending request they created, they are unable to see that request in the history table. This is because we index the DAO proposals the same way as the 'other' proposals and rfps. We get the contract state on the blockheight of the receipt from the RPC for every transaction. A problem presented itself when indexing the sputnik contract in this way. When an DAO member votes to remove the proposal it gets deleted from contract and the RPC returns an contract panic
ERROR_NO_PROPOSAL
.User Story
As a user I would like to view which proposals were deleted in the history table.
Acceptance Criteria
Attachment
Screenshare.-.2025-01-22.11_56_36.AM.mp4
Technical Info
The number of indexed proposals should be the same as the number that gets returned by the
get_last_proposal_id
. Ensuring that even the deleted proposals are indexed.The text was updated successfully, but these errors were encountered: