mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-26 00:05:18 +00:00
feat: update spec
This commit is contained in:
parent
2a31e0eece
commit
3b35ecfea5
@ -11,7 +11,7 @@ type ValidatorVestingAccount struct {
|
|||||||
ReturnAddress sdk.AccAddress `json:"return_address" yaml:"return_address"` // The account where coins will be returned in the event of a failed vesting period
|
ReturnAddress sdk.AccAddress `json:"return_address" yaml:"return_address"` // The account where coins will be returned in the event of a failed vesting period
|
||||||
SigningThreshold int64 `json:"signing_threshold" yaml:"signing_threshold"` // The percentage of blocks, as an integer between 0 and 100, that must be signed each period for coins to successfully vest.
|
SigningThreshold int64 `json:"signing_threshold" yaml:"signing_threshold"` // The percentage of blocks, as an integer between 0 and 100, that must be signed each period for coins to successfully vest.
|
||||||
MissingSignCount []int64 `json:"missing_sign_count" yaml:"missing_sign_count"` // An array of two integers which track the number of blocks that were not signed during the current period and the total number of blocks which have passed during the current period, respectively.
|
MissingSignCount []int64 `json:"missing_sign_count" yaml:"missing_sign_count"` // An array of two integers which track the number of blocks that were not signed during the current period and the total number of blocks which have passed during the current period, respectively.
|
||||||
VestingPeriodProgress []int `json:"vesting_period_progress" yaml:"vesting_period_progress"` //An array with length equal to the number of vesting periods. After each period, the value at the index of that period is updated with 0 for unsucessful vesting and 1 for successful vesting.
|
VestingPeriodProgress [][]int `json:"vesting_period_progress" yaml:"vesting_period_progress"` //An 2d array with length equal to the number of vesting periods. After each period, the value at the first index of that period is updated with 1 to represent that the period is over. The value at the second index is updated to 0 for unsucessful vesting and 1 for successful vesting.
|
||||||
DebtAfterFailedVesting sdk.Coins `json:"debt_after_failed_vesting" yaml:"debt_after_failed_vesting"` // The debt currently owed by the account. Debt accumulates in the event of unsuccessful vesting periods.
|
DebtAfterFailedVesting sdk.Coins `json:"debt_after_failed_vesting" yaml:"debt_after_failed_vesting"` // The debt currently owed by the account. Debt accumulates in the event of unsuccessful vesting periods.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Begin Block
|
# Begin Block
|
||||||
|
|
||||||
At each `BeginBlock`, all validator vesting accounts are iterated over to update the status of the current vesting period. Note that the address of each account is retreived by iterating over the keys in the `validator-vesting` store, while the account objects are stored and accessed using the `auth` module's `AccountKeeper`. For each account, the block count is incremented, the missed sign count is incremented if the validator did not sign the block or was not found in the validator set. By comparing the blocktime of the current `BeginBlock`, with the value of `previousBlockTime` stored in the `validator-vesting` store, it is determined if the end of the current period has been reached. If the current period has ended, the `VestingPeriodProgress` field is updated to reflect if the coins for the ending period successfully vested or not. After updates are made regarding the status of the current vesting period, any outstanding debt on the account is attempted to be collected. If there is enough `SpendableBalance` on the account to cover the debt, coins are sent to the `ReturnAdress` or burned. If there is not enough `SpendableBalance` to cover the debt, all delegations of the account are `Unbonded`. Once those unbonding events reach maturity, the coins freed from the undonding will be used to cover the debt.
|
At each `BeginBlock`, all validator vesting accounts are iterated over to update the status of the current vesting period. Note that the address of each account is retreived by iterating over the keys in the `validator-vesting` store, while the account objects are stored and accessed using the `auth` module's `AccountKeeper`. For each account, the block count is incremented, the missed sign count is incremented if the validator did not sign the block or was not found in the validator set. By comparing the blocktime of the current `BeginBlock`, with the value of `previousBlockTime` stored in the `validator-vesting` store, it is determined if the end of the current period has been reached. If the current period has ended, the `VestingPeriodProgress` field is updated to reflect if the coins for the ending period successfully vested or not. After updates are made regarding the status of the current vesting period, any outstanding debt on the account is attempted to be collected. If there is enough `SpendableBalance` on the account to cover the debt, coins are sent to the `ReturnAdress` or burned. If there is not enough `SpendableBalance` to cover the debt, all delegations of the account are `Unbonded`. Once those unbonding events reach maturity, the coins freed from the undonding will be used to cover the debt. Finally, the time of the previous block is stored in the validator vesting account keeper, which is used to determine when a period has ended.
|
||||||
|
|
||||||
```go
|
```go
|
||||||
func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) {
|
func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) {
|
||||||
@ -9,12 +9,12 @@ func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper)
|
|||||||
previousBlockTime = k.GetPreviousBlockTime(ctx)
|
previousBlockTime = k.GetPreviousBlockTime(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
currentBlockTime := req.Header.GetTime()
|
currentBlockTime := ctx.BlockTime()
|
||||||
var voteInfos VoteInfos
|
var voteInfos VoteInfos
|
||||||
voteInfos = ctx.VoteInfos()
|
voteInfos = req.LastCommitInfo.GetVotes()
|
||||||
validatorVestingKeys := k.GetAllAccountKeys(ctx)
|
validatorVestingKeys := k.GetAllAccountKeys(ctx)
|
||||||
for _, key := range validatorVestingKeys {
|
for _, key := range validatorVestingKeys {
|
||||||
acc := k.GetAccountFromAuthKeeper(ctx, key)
|
acc := k.GetAccountFromAuthKeeper(ctx, key[1:])
|
||||||
if voteInfos.ContainsValidatorAddress(acc.ValidatorAddress) {
|
if voteInfos.ContainsValidatorAddress(acc.ValidatorAddress) {
|
||||||
vote := voteInfos.MustFilterByValidatorAddress(acc.ValidatorAddress)
|
vote := voteInfos.MustFilterByValidatorAddress(acc.ValidatorAddress)
|
||||||
if !vote.SignedLastBlock {
|
if !vote.SignedLastBlock {
|
||||||
@ -29,14 +29,15 @@ func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check if a period ended in the last block
|
// check if a period ended in the last block
|
||||||
endTimes := k.GetPeriodEndTimes(ctx, key)
|
endTimes := k.GetPeriodEndTimes(ctx, key[1:])
|
||||||
|
|
||||||
for i, t := range endTimes {
|
for i, t := range endTimes {
|
||||||
if currentBlockTime.Unix() >= t && previousBlockTime.Unix() < t {
|
if currentBlockTime.Unix() >= t && previousBlockTime.Unix() < t {
|
||||||
k.UpdateVestedCoinsProgress(ctx, key, i)
|
k.UpdateVestedCoinsProgress(ctx, key[1:], i)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// handle any new/remaining debt on the account
|
// handle any new/remaining debt on the account
|
||||||
k.HandleVestingDebt(ctx, key, currentBlockTime)
|
k.HandleVestingDebt(ctx, key[1:], currentBlockTime)
|
||||||
}
|
}
|
||||||
k.SetPreviousBlockTime(ctx, currentBlockTime)
|
k.SetPreviousBlockTime(ctx, currentBlockTime)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user