feat: ✨ MSP stop storing buckets for insolvent user task #366
+1,094
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the
MspStopStoringInsolventUserTask
, which is the task in charge of deleting the currently stored buckets that belong to a user that has become insolvent. This task:UserWithoutFunds
event from the runtime. When it receives it, checks if any of the MSP's stored buckets belongs to the now-insolvent user, and if it has at least one it queues up aStopStoringForInsolventUserRequest
.MspStopStoringBucketInsolventUser
event from the runtime. When it receives it it executes the same logic as when reacting to theUserWithoutFunds
. This is so after successfully deleting a bucket of the insolvent user, the MSP continues deleting if it has more buckets left.ProcessStopStoringForInsolventUserRequest
event from the blockchain service. This event is emitted when the task can acquire a forest write tx lock to process the previously emittedStopStoringForInsolventUserRequest
.msp_stop_storing_bucket_for_insolvent_user
call gets reverted.msp_stop_storing_bucket_for_insolvent_user
extrinsic and sends it.FinalisedMspStopStoringBucketInsolventUser
(which is emitted when a block that contained aMspStopStoringBucketInsolventUser
event gets finalised). When it receives it, it deletes the bucket from the forest storage and all that bucket's files from the file storage.Pending TODOs:
Develop an integration test that comprehensively tests this flow.DONE