0c6e44d3d3
* evm: remove CommitStateDB and stateObject * imported build fixes * lint * rm set nonce * update account response * changelog
49 lines
1.6 KiB
Go
49 lines
1.6 KiB
Go
package keeper
|
|
|
|
import (
|
|
"math/big"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
ethtypes "github.com/ethereum/go-ethereum/core/types"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
// BeginBlock sets the block hash -> block height map for the previous block height
|
|
// and resets the Bloom filter and the transaction count to 0.
|
|
func (k *Keeper) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
|
|
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyBeginBlocker)
|
|
k.WithContext(ctx)
|
|
k.headerHash = common.BytesToHash(req.Hash)
|
|
}
|
|
|
|
// EndBlock updates the accounts and commits state objects to the KV Store, while
|
|
// deleting the empty ones. It also sets the bloom filers for the request block to
|
|
// the store. 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 {
|
|
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyEndBlocker)
|
|
|
|
// Gas costs are handled within msg handler so costs should be ignored
|
|
infCtx := ctx.WithGasMeter(sdk.NewInfiniteGasMeter())
|
|
k.WithContext(ctx)
|
|
|
|
// get the block bloom bytes from the transient store and set it to the persistent storage
|
|
bloomBig, found := k.GetBlockBloomTransient()
|
|
if !found {
|
|
bloomBig = big.NewInt(0)
|
|
}
|
|
|
|
bloom := ethtypes.BytesToBloom(bloomBig.Bytes())
|
|
k.SetBlockBloom(infCtx, req.Height, bloom)
|
|
k.WithContext(ctx)
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
}
|