Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
93 lines
3.2 KiB
Go
93 lines
3.2 KiB
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/epochs/types"
|
|
)
|
|
|
|
// BeginBlocker of epochs module.
|
|
func (k *Keeper) BeginBlocker(ctx sdk.Context) error {
|
|
start := telemetry.Now()
|
|
defer telemetry.ModuleMeasureSince(types.ModuleName, start, telemetry.MetricKeyBeginBlocker)
|
|
|
|
blockTime := ctx.BlockTime()
|
|
blockHeight := ctx.BlockHeight()
|
|
|
|
err := k.EpochInfo.Walk(
|
|
ctx,
|
|
nil,
|
|
func(key string, epochInfo types.EpochInfo) (stop bool, err error) {
|
|
// If blocktime < initial epoch start time, return
|
|
if blockTime.Before(epochInfo.StartTime) {
|
|
return false, nil
|
|
}
|
|
// if epoch counting hasn't started, signal we need to start.
|
|
shouldInitialEpochStart := !epochInfo.EpochCountingStarted
|
|
|
|
epochEndTime := epochInfo.CurrentEpochStartTime.Add(epochInfo.Duration)
|
|
shouldEpochStart := (blockTime.After(epochEndTime)) || shouldInitialEpochStart
|
|
|
|
if !shouldEpochStart {
|
|
return false, nil
|
|
}
|
|
epochInfo.CurrentEpochStartHeight = blockHeight
|
|
|
|
if shouldInitialEpochStart {
|
|
epochInfo.EpochCountingStarted = true
|
|
epochInfo.CurrentEpoch = 1
|
|
epochInfo.CurrentEpochStartTime = epochInfo.StartTime
|
|
ctx.Logger().Debug(fmt.Sprintf("Starting new epoch with identifier %s epoch number %d", epochInfo.Identifier, epochInfo.CurrentEpoch))
|
|
} else {
|
|
err := ctx.EventManager().EmitTypedEvent(&types.EventEpochEnd{
|
|
EpochNumber: epochInfo.CurrentEpoch,
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if err != nil {
|
|
return false, nil
|
|
}
|
|
|
|
cacheCtx, writeFn := ctx.CacheContext()
|
|
if err := k.AfterEpochEnd(cacheCtx, epochInfo.Identifier, epochInfo.CurrentEpoch); err != nil {
|
|
// purposely ignoring the error here not to halt the chain if the hook fails
|
|
ctx.Logger().Error(fmt.Sprintf("Error after epoch end with identifier %s epoch number %d", epochInfo.Identifier, epochInfo.CurrentEpoch))
|
|
} else {
|
|
writeFn()
|
|
}
|
|
|
|
epochInfo.CurrentEpoch += 1
|
|
epochInfo.CurrentEpochStartTime = epochInfo.CurrentEpochStartTime.Add(epochInfo.Duration)
|
|
ctx.Logger().Debug(fmt.Sprintf("Starting epoch with identifier %s epoch number %d", epochInfo.Identifier, epochInfo.CurrentEpoch))
|
|
}
|
|
|
|
// emit new epoch start event, set epoch info, and run BeforeEpochStart hook
|
|
err = ctx.EventManager().EmitTypedEvent(&types.EventEpochStart{
|
|
EpochNumber: epochInfo.CurrentEpoch,
|
|
EpochStartTime: epochInfo.CurrentEpochStartTime.Unix(),
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
err = k.EpochInfo.Set(ctx, epochInfo.Identifier, epochInfo)
|
|
if err != nil {
|
|
ctx.Logger().Error(fmt.Sprintf("Error set epoch info with identifier %s epoch number %d", epochInfo.Identifier, epochInfo.CurrentEpoch))
|
|
return false, nil
|
|
}
|
|
|
|
cacheCtx, writeFn := ctx.CacheContext()
|
|
if err := k.BeforeEpochStart(cacheCtx, epochInfo.Identifier, epochInfo.CurrentEpoch); err != nil {
|
|
// purposely ignoring the error here not to halt the chain if the hook fails
|
|
ctx.Logger().Error(fmt.Sprintf("Error before epoch start with identifier %s epoch number %d", epochInfo.Identifier, epochInfo.CurrentEpoch))
|
|
} else {
|
|
writeFn()
|
|
}
|
|
|
|
return false, nil
|
|
},
|
|
)
|
|
return err
|
|
}
|