-
Notifications
You must be signed in to change notification settings - Fork 434
refactor: remove redistribution delay #1485
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
refactor: remove redistribution delay #1485
Conversation
SlashEscrowFactory
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't we also preventing the EIGEN
strategy from being added to the redistributing operator sets?
ead84ff
to
313afe1
Compare
f284dbd
to
82e552b
Compare
} | ||
|
||
/** | ||
* @dev This empty reserved space is put in place to allow future versions to add new | ||
* variables without shifting down storage in the inheritance chain. | ||
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps | ||
*/ | ||
uint256[35] private __gap; | ||
uint256[31] private __gap; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct gap, we only use 3 more slots
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after gap correction.
Either squash merge this into release-dev, or rebase this before merging to cut down on the # of commits
8cff169
into
release-dev/redistribution-changes
**Motivation:** We've decided we do not want delays on redistributions. **Modifications:** - Removed `SlashEscrowFactory` + `SlashEscrow` and all relevant changes. **Result:** Tokens are immediately redistributed upon calling `clearBurnOrRedistributableShares`.
Motivation:
We've decided we do not want delays on redistributions.
Modifications:
SlashEscrowFactory
+SlashEscrow
and all relevant changes.Result:
Tokens are immediately redistributed upon calling
clearBurnOrRedistributableShares
.