From 900e124beea551ded290f61e7bf85ff6b2e4a29e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 9 Feb 2016 13:24:42 +0200 Subject: cmd, common, node, rpc: rework naming convention to canonical one --- cmd/gethrpctest/main.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cmd/gethrpctest/main.go') diff --git a/cmd/gethrpctest/main.go b/cmd/gethrpctest/main.go index 8b54fa2c1..38016fb35 100644 --- a/cmd/gethrpctest/main.go +++ b/cmd/gethrpctest/main.go @@ -93,13 +93,13 @@ func main() { func MakeSystemNode(keydir string, privkey string, test *tests.BlockTest) (*node.Node, error) { // Create a networkless protocol stack stack, err := node.New(&node.Config{ - IpcPath: node.DefaultIpcEndpoint(), - HttpHost: common.DefaultHttpHost, - HttpPort: common.DefaultHttpPort, - HttpModules: []string{"admin", "db", "eth", "debug", "miner", "net", "shh", "txpool", "personal", "web3"}, - WsHost: common.DefaultWsHost, - WsPort: common.DefaultWsPort, - WsModules: []string{"admin", "db", "eth", "debug", "miner", "net", "shh", "txpool", "personal", "web3"}, + IPCPath: node.DefaultIPCEndpoint(), + HTTPHost: common.DefaultHTTPHost, + HTTPPort: common.DefaultHTTPPort, + HTTPModules: []string{"admin", "db", "eth", "debug", "miner", "net", "shh", "txpool", "personal", "web3"}, + WSHost: common.DefaultWSHost, + WSPort: common.DefaultWSPort, + WSModules: []string{"admin", "db", "eth", "debug", "miner", "net", "shh", "txpool", "personal", "web3"}, NoDiscovery: true, }) if err != nil { -- cgit v1.2.3