Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "isPaused" thingy #417

Open
PaulRBerg opened this issue Mar 26, 2025 · 6 comments
Open

Remove "isPaused" thingy #417

PaulRBerg opened this issue Mar 26, 2025 · 6 comments
Labels
effort: low Easy or tiny task that takes less than a day. priority: 3 Nice-to-have. Willing to ship without this. type: refactor Change that neither fixes a bug nor adds a feature. work: clear Sense-categorize-respond. The relationship between cause and effect is clear.

Comments

@PaulRBerg
Copy link
Member

PaulRBerg commented Mar 26, 2025

The isPaused isn't helpful. It's outright confusing. This is the current implementation:

function isPaused(uint256 streamId) external view override notNull(streamId) returns (bool result) {
result = _streams[streamId].ratePerSecond.unwrap() == 0;
}

This getterthingy basically provides an alternative definition for what 'paused' means in SablierFlow.

'Paused' doesn't mean just one of the two enum statuses PAUSED_SOLVENT or PAUSED_SOLVENT — it also means the state of the RPS being zero.

That means that isPaused can return zero even when the stream's status is VOIDED.

There's really no need for this thingy. It's a very thin abstraction that does more harm than good by existing. It also complicates our invariants a lot.

@PaulRBerg PaulRBerg added effort: low Easy or tiny task that takes less than a day. priority: 3 Nice-to-have. Willing to ship without this. type: refactor Change that neither fixes a bug nor adds a feature. work: clear Sense-categorize-respond. The relationship between cause and effect is clear. labels Mar 26, 2025
@PaulRBerg
Copy link
Member Author

How do you determine if a stream is paused in the UI, @sablier-labs/frontend?

Do you use this getter isPaused, or do you check the status via statusOf?

@razgraf
Copy link
Member

razgraf commented Mar 27, 2025

Neither, we watch for the Pause/Restart events.

@smol-ninja
Copy link
Member

smol-ninja commented Mar 27, 2025

Are you proposing to rely on status than getter function? If yes, then can we not use the same argument for isVoided getter as well?

@PaulRBerg
Copy link
Member Author

We can keep isPaused but it'd have to read the status and look for the PAUSED_ statuses.

isVoided is OK because it doesn't introduce an alternative meaning for the 'voided' concept.

My only beef is with the dual meaning of 'paused'.

@smol-ninja
Copy link
Member

Makes sense. Thanks for answering my question. I agree with you. Also, I just realized that classifying it a getter is also misleading since there is no state variables tracking paused status. A more appropriate getter is getRatePerSecond which is already there.

@PaulRBerg
Copy link
Member Author

You're welcome, and yeah good point!

@PaulRBerg PaulRBerg changed the title Remove "isPaused" getter Remove "isPaused" thingy Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
effort: low Easy or tiny task that takes less than a day. priority: 3 Nice-to-have. Willing to ship without this. type: refactor Change that neither fixes a bug nor adds a feature. work: clear Sense-categorize-respond. The relationship between cause and effect is clear.
Projects
None yet
Development

No branches or pull requests

3 participants