We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For those who pledge to mine, the pledge deposit can not be withdrawn at any time, but there is a lock-up period. The specific algorithm is as follows
ib:initial pledge deposit ab:additional pledge deposit sno:starting block (this height is constantly changing with additional pledges) cn:current block lockt:number of locked blocks (fixed lock duration)
Delay δh blocks, users can withdraw
δh
$$ \delta h = \frac{ib}{ib+ab} *max((sno + lockt - cno),0) + \frac{ab}{ib+ab} * lockt $$
If δh is less than half of lockt, δh = 1/2 lockt, otherwise δh
The text was updated successfully, but these errors were encountered:
mindcarver
No branches or pull requests
background
Delay
δh
blocks, users can withdrawIf δh is less than half of lockt, δh = 1/2 lockt, otherwise δh
The text was updated successfully, but these errors were encountered: