Skip to content

Commit

Permalink
enable suavex by default (ethereum#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarzzz committed Jan 22, 2024
1 parent 2786f36 commit 3de38ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/config.go
Expand Up @@ -117,7 +117,7 @@ func defaultNodeConfig() node.Config {
cfg := node.DefaultConfig
cfg.Name = clientIdentifier
cfg.Version = params.VersionWithCommit(git.Commit, git.Date)
cfg.HTTPModules = append(cfg.HTTPModules, "eth")
cfg.HTTPModules = append(cfg.HTTPModules, "eth", "suavex")
cfg.WSModules = append(cfg.WSModules, "eth")
cfg.IPCPath = "geth.ipc"
return cfg
Expand Down

0 comments on commit 3de38ff

Please sign in to comment.