mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
12 lines
489 B
Markdown
12 lines
489 B
Markdown
|
# Begin Block
|
||
|
|
||
|
At the start of each block, expired claims and claim periods are deleted, rewards are applied to CDPs for any ongoing reward periods, expired reward periods are deleted and replaced with a new reward period (if active), and claim periods are created for expiring reward periods. The logic is as follows:
|
||
|
|
||
|
```go
|
||
|
func BeginBlocker(ctx sdk.Context, k Keeper) {
|
||
|
k.DeleteExpiredClaimsAndClaimPeriods(ctx)
|
||
|
k.ApplyRewardsToCdps(ctx)
|
||
|
k.CreateAndDeleteRewardPeriods(ctx)
|
||
|
}
|
||
|
```
|