0g-chain/x/incentive/spec/06_begin_block.md
Denali Marsh 2d7f5c4080
[R4R] Better docs (#541)
* update sidebar order

* update event backticks

* fix broken links

* fix spelling
2020-06-03 14:54:31 -04:00

508 B

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:

func BeginBlocker(ctx sdk.Context, k Keeper) {
  k.DeleteExpiredClaimsAndClaimPeriods(ctx)
  k.ApplyRewardsToCdps(ctx)
  k.CreateAndDeleteRewardPeriods(ctx)
}