Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
chore: removing duplicate namespace entries (#1440)
Browse files Browse the repository at this point in the history
  • Loading branch information
corduroybera committed Jan 31, 2024
1 parent 863ecb0 commit 6c003aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ node_modules
.next
next-env.d.ts
.env
.envrc
out

# docker test
Expand All @@ -226,3 +227,5 @@ out

# integration testing coverage
coverage-test-unit-cover.txt

.direnv/
2 changes: 1 addition & 1 deletion eth/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func DefaultGethNodeConfig() *node.Config {
nodeCfg.P2P.NoDiscovery = true
nodeCfg.P2P.MaxPeers = 0
nodeCfg.Name = clientIdentifier
nodeCfg.HTTPModules = append(nodeCfg.HTTPModules, "eth", "web3", "net", "txpool", "debug")
nodeCfg.HTTPModules = append(nodeCfg.HTTPModules, "eth", "txpool")
nodeCfg.WSModules = append(nodeCfg.WSModules, "eth")
nodeCfg.HTTPHost = "0.0.0.0"
nodeCfg.WSHost = "0.0.0.0"
Expand Down

1 comment on commit 6c003aa

@karinekarine100
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aysmi

Please sign in to comment.