Skip to content

Commit

Permalink
Make all experimental LFVM configurations accessible in Aida
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbertJordan committed Oct 8, 2024
1 parent b8395df commit a380ba0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion utils/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,16 @@ import (
"github.com/Fantom-foundation/Tosca/go/geth_adapter"
_ "github.com/Fantom-foundation/Tosca/go/interpreter/evmone"
_ "github.com/Fantom-foundation/Tosca/go/interpreter/evmzero"
_ "github.com/Fantom-foundation/Tosca/go/interpreter/lfvm"
"github.com/Fantom-foundation/Tosca/go/interpreter/lfvm"
"github.com/Fantom-foundation/Tosca/go/tosca"
)

func init() {
if err := lfvm.RegisterExperimentalInterpreterConfigurations(); err != nil {
panic(fmt.Sprintf("failed to register experimental LFVM interpreter configurations: %v", err))
}
}

type ArgumentMode int
type ChainID int
type ChainIDs map[ChainID]string
Expand Down

0 comments on commit a380ba0

Please sign in to comment.