aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-07 04:54:21 +0800
committerobscuren <geffobscura@gmail.com>2015-05-07 04:54:21 +0800
commit062fa049d0322f17f8ba831203a609d048f623f1 (patch)
tree1600884f30471066b9f54cc26c2a9e95b9b20989 /cmd/geth
parent24d44f35f2cf17b07330a7e7be79abc2b6b92fc6 (diff)
parent4accc187d5cf6a100d6c10c0e0f35780f52871a0 (diff)
downloadgo-tangerine-062fa049d0322f17f8ba831203a609d048f623f1.tar.gz
go-tangerine-062fa049d0322f17f8ba831203a609d048f623f1.tar.zst
go-tangerine-062fa049d0322f17f8ba831203a609d048f623f1.zip
fixed merge issue
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/admin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/geth/admin.go b/cmd/geth/admin.go
index e7cc96ddb..f15ce89a0 100644
--- a/cmd/geth/admin.go
+++ b/cmd/geth/admin.go
@@ -32,7 +32,7 @@ func (js *jsre) adminBindings() {
js.re.Set("admin", struct{}{})
t, _ := js.re.Get("admin")
admin := t.Object()
- admin.Set("suggestPeer", js.suggestPeer)
+ admin.Set("addPeer", js.addPeer)
admin.Set("startRPC", js.startRPC)
admin.Set("stopRPC", js.stopRPC)
admin.Set("nodeInfo", js.nodeInfo)
@@ -314,13 +314,13 @@ func (js *jsre) stopRPC(call otto.FunctionCall) otto.Value {
return otto.FalseValue()
}
-func (js *jsre) suggestPeer(call otto.FunctionCall) otto.Value {
+func (js *jsre) addPeer(call otto.FunctionCall) otto.Value {
nodeURL, err := call.Argument(0).ToString()
if err != nil {
fmt.Println(err)
return otto.FalseValue()
}
- err = js.ethereum.SuggestPeer(nodeURL)
+ err = js.ethereum.AddPeer(nodeURL)
if err != nil {
fmt.Println(err)
return otto.FalseValue()