add TODO for return value checking

This commit is contained in:
frrist 2020-03-05 11:19:34 -08:00
parent f4b07a7293
commit 00f5ee6064

View File

@ -41,7 +41,7 @@ func (f *Factories) NewRandomnessSource() vstate.RandomnessSource {
func (f *Factories) NewValidationConfig() vstate.ValidationConfig {
trackGas := true
checkExit := true
checkRet := false
checkRet := false // TODO enable return value checking once https://github.com/filecoin-project/specs-actors/pull/230 lands
// ignore gas and return value assertions
return NewConfig(trackGas, checkExit, checkRet)
}