mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
2d7f5c4080
* update sidebar order * update event backticks * fix broken links * fix spelling
16 lines
508 B
Markdown
16 lines
508 B
Markdown
<!--
|
|
order: 6
|
|
-->
|
|
|
|
# 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)
|
|
}
|
|
```
|