diff options
author | Stephen Buttolph <[email protected]> | 2020-04-16 01:02:16 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-16 01:02:16 -0400 |
commit | 6ac9ecf8a736e06a5dba6b971e632342fe6eef66 (patch) | |
tree | 2c8314f1c69b9afaf30e71a887cd9734fceb0023 /plugin/main.go | |
parent | ae13dfb64a82d35d6c9607bc61dcf1ac21e59f85 (diff) |
Revert "Added the EVM as a plugin"
Diffstat (limited to 'plugin/main.go')
-rw-r--r-- | plugin/main.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/plugin/main.go b/plugin/main.go deleted file mode 100644 index f5c9909..0000000 --- a/plugin/main.go +++ /dev/null @@ -1,21 +0,0 @@ -package main - -import ( - "github.com/hashicorp/go-plugin" - - "github.com/ava-labs/gecko/vms/rpcchainvm" - - "github.com/ava-labs/coreth/plugin/evm" -) - -func main() { - plugin.Serve(&plugin.ServeConfig{ - HandshakeConfig: rpcchainvm.Handshake, - Plugins: map[string]plugin.Plugin{ - "vm": rpcchainvm.New(&evm.VM{}), - }, - - // A non-nil value here enables gRPC serving for this plugin... - GRPCServer: plugin.DefaultGRPCServer, - }) -} |