lotus/chain/validation/factories.go

35 lines
736 B
Go
Raw Normal View History

package validation
import (
2020-05-21 18:17:34 +00:00
"github.com/filecoin-project/specs-actors/actors/runtime"
2020-02-27 22:17:08 +00:00
vstate "github.com/filecoin-project/chain-validation/state"
)
2020-02-27 22:17:08 +00:00
type Factories struct {
*Applier
}
2020-02-27 22:17:08 +00:00
var _ vstate.Factories = &Factories{}
2020-02-27 22:17:08 +00:00
func NewFactories() *Factories {
return &Factories{}
}
2020-05-21 18:17:34 +00:00
func (f *Factories) NewStateAndApplier(syscalls runtime.Syscalls) (vstate.VMWrapper, vstate.Applier) {
st := NewState()
2020-05-21 18:17:34 +00:00
return st, NewApplier(st, syscalls)
}
2020-02-27 22:17:08 +00:00
func (f *Factories) NewKeyManager() vstate.KeyManager {
return newKeyManager()
}
func (f *Factories) NewValidationConfig() vstate.ValidationConfig {
2020-03-24 21:30:27 +00:00
trackGas := true
2020-03-05 18:13:49 +00:00
checkExit := true
2020-03-17 08:30:50 +00:00
checkRet := true
checkState := true
return NewConfig(trackGas, checkExit, checkRet, checkState)
}