diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 19:24:42 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 19:24:42 +0800 |
commit | 900e124beea551ded290f61e7bf85ff6b2e4a29e (patch) | |
tree | f4447602e77956699a8df44a1edc9932688d48fd /cmd/geth/js_test.go | |
parent | 7486904b92449c5955bb682f4ff98752906912b8 (diff) | |
download | go-tangerine-900e124beea551ded290f61e7bf85ff6b2e4a29e.tar.gz go-tangerine-900e124beea551ded290f61e7bf85ff6b2e4a29e.tar.zst go-tangerine-900e124beea551ded290f61e7bf85ff6b2e4a29e.zip |
cmd, common, node, rpc: rework naming convention to canonical one
Diffstat (limited to 'cmd/geth/js_test.go')
-rw-r--r-- | cmd/geth/js_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/geth/js_test.go b/cmd/geth/js_test.go index 58800ed44..ed6e5b319 100644 --- a/cmd/geth/js_test.go +++ b/cmd/geth/js_test.go @@ -96,7 +96,7 @@ func testREPL(t *testing.T, config func(*eth.Config)) (string, *testjethre, *nod t.Fatal(err) } // Create a networkless protocol stack - stack, err := node.New(&node.Config{PrivateKey: testNodeKey, Name: "test", NoDiscovery: true, IpcPath: fmt.Sprintf("geth-test-%d.ipc", rand.Int63())}) + stack, err := node.New(&node.Config{PrivateKey: testNodeKey, Name: "test", NoDiscovery: true, IPCPath: fmt.Sprintf("geth-test-%d.ipc", rand.Int63())}) if err != nil { t.Fatalf("failed to create node: %v", err) } @@ -142,7 +142,7 @@ func testREPL(t *testing.T, config func(*eth.Config)) (string, *testjethre, *nod stack.Service(ðereum) assetPath := filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext") - client, err := utils.NewRemoteRPCClientFromString("ipc:" + stack.IpcEndpoint()) + client, err := utils.NewRemoteRPCClientFromString("ipc:" + stack.IPCEndpoint()) if err != nil { t.Fatalf("failed to attach to node: %v", err) } |