Skip to content

Commit

Permalink
Merge pull request ethereum#20 from expanse-org/v1.6.x
Browse files Browse the repository at this point in the history
fix default api append
  • Loading branch information
chrisfranko authored Jun 5, 2017
2 parents bd76b31 + cf19408 commit 89ac899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/gexp/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ func defaultNodeConfig() node.Config {
cfg := node.DefaultConfig
cfg.Name = clientIdentifier
cfg.Version = params.VersionWithCommit(gitCommit)
cfg.HTTPModules = append(cfg.HTTPModules, "eth, exp")
cfg.WSModules = append(cfg.WSModules, "eth, exp")
cfg.HTTPModules = append(cfg.HTTPModules, "eth")
cfg.WSModules = append(cfg.WSModules, "eth")
cfg.IPCPath = "gexp.ipc"
return cfg
}
Expand Down

0 comments on commit 89ac899

Please sign in to comment.