ade84319e6
* initial statedb module unit tests unit tests keeper implementation extract TxConfig remove unused code * keeper integration * fix unit tests * Apply suggestions from code review Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * fixup! initial statedb module * changelog Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
28 lines
919 B
Go
28 lines
919 B
Go
package keeper
|
|
|
|
import (
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
ethtypes "github.com/ethereum/go-ethereum/core/types"
|
|
)
|
|
|
|
// BeginBlock sets the sdk Context and EIP155 chain id to the Keeper.
|
|
func (k *Keeper) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
|
|
k.WithChainID(ctx)
|
|
}
|
|
|
|
// EndBlock also retrieves the bloom filter value from the transient store and commits it to the
|
|
// KVStore. The EVM end block logic doesn't update the validator set, thus it returns
|
|
// an empty slice.
|
|
func (k *Keeper) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.ValidatorUpdate {
|
|
// Gas costs are handled within msg handler so costs should be ignored
|
|
infCtx := ctx.WithGasMeter(sdk.NewInfiniteGasMeter())
|
|
|
|
bloom := ethtypes.BytesToBloom(k.GetBlockBloomTransient(infCtx).Bytes())
|
|
k.EmitBlockBloomEvent(infCtx, bloom)
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
}
|