diff options
author | Guillaume Ballet <gballet@gmail.com> | 2018-09-20 15:44:35 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-09-20 15:44:35 +0800 |
commit | da29332c5f4c368ff03ec4e7132eefac48fed1ae (patch) | |
tree | fc9a9d2bd594ef22f7b9d9fca8bd410c28304f99 /eth/config.go | |
parent | 3fec73500b60c82a827b36bb03f8ae011b861e72 (diff) | |
download | go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar.gz go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar.bz2 go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar.lz go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar.xz go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.tar.zst go-tangerine-da29332c5f4c368ff03ec4e7132eefac48fed1ae.zip |
core/vm: add switches to select evm+ewasm interpreters (#17687)
Interpreter initialization is left to the PRs implementing them.
Options for external interpreters are passed after a colon in the
`--vm.ewasm` and `--vm.evm` switches.
Diffstat (limited to 'eth/config.go')
-rw-r--r-- | eth/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/eth/config.go b/eth/config.go index f1a402e37..efbaafb6a 100644 --- a/eth/config.go +++ b/eth/config.go @@ -121,6 +121,11 @@ type Config struct { // Miscellaneous options DocRoot string `toml:"-"` + + // Type of the EWASM interpreter ("" for detault) + EWASMInterpreter string + // Type of the EVM interpreter ("" for default) + EVMInterpreter string } type configMarshaling struct { |