core/vm/runtime: removed leftover ruleset

This commit is contained in:
Jeffrey Wilcke 2016-12-05 22:35:47 +01:00
parent 0ad8aaad00
commit 556ab6f508

View file

@ -28,14 +28,6 @@ import (
"github.com/ethereum/go-ethereum/params"
)
// The default, always homestead, rule set for the vm env
type ruleSet struct{}
func (ruleSet) IsHomestead(*big.Int) bool { return true }
func (ruleSet) GasTable(*big.Int) params.GasTable {
return params.GasTableHomesteadGasRepriceFork
}
// Config is a basic type specifying certain configuration flags for running
// the EVM.
type Config struct {