lotus/chain/vm/vmi.go

28 lines
830 B
Go
Raw Normal View History

2021-12-17 03:38:13 +00:00
package vm
import (
"context"
"os"
2021-12-17 03:38:13 +00:00
"github.com/filecoin-project/lotus/chain/types"
"github.com/ipfs/go-cid"
)
2022-03-15 22:46:56 +00:00
type Interface interface {
// Applies the given message onto the VM's current state, returning the result of the execution
2021-12-17 03:38:13 +00:00
ApplyMessage(ctx context.Context, cmsg types.ChainMsg) (*ApplyRet, error)
2022-03-15 22:46:56 +00:00
// Same as above but for system messages (the Cron invocation and block reward payments).
// Must NEVER fail.
2021-12-17 03:38:13 +00:00
ApplyImplicitMessage(ctx context.Context, msg *types.Message) (*ApplyRet, error)
2022-03-15 22:46:56 +00:00
// Flush all buffered objects into the state store provided to the VM at construction.
2021-12-17 03:38:13 +00:00
Flush(ctx context.Context) (cid.Cid, error)
}
2022-03-15 22:46:56 +00:00
func NewVM(ctx context.Context, opts *VMOpts) (Interface, error) {
if os.Getenv("LOTUS_USE_FVM_EXPERIMENTAL") == "1" {
return NewFVM(ctx, opts)
}
2022-03-15 23:40:17 +00:00
return NewLegacyVM(ctx, opts)
}