diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 20:10:40 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 20:10:40 +0800 |
commit | df75dbfd6804923b1c8a8388b67523072d59f155 (patch) | |
tree | 5191e9a8004499727a42336be1f092bc04943ae8 /cmd/utils | |
parent | 900e124beea551ded290f61e7bf85ff6b2e4a29e (diff) | |
download | go-tangerine-df75dbfd6804923b1c8a8388b67523072d59f155.tar.gz go-tangerine-df75dbfd6804923b1c8a8388b67523072d59f155.tar.zst go-tangerine-df75dbfd6804923b1c8a8388b67523072d59f155.zip |
cmd, node, rpc: readd inproc RPC client, expose via node
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/client.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/utils/client.go b/cmd/utils/client.go index 1144af6f6..3913d007b 100644 --- a/cmd/utils/client.go +++ b/cmd/utils/client.go @@ -51,6 +51,5 @@ func NewRemoteRPCClientFromString(endpoint string) (rpc.Client, error) { if strings.HasPrefix(endpoint, "ws:") { return rpc.NewWSClient(endpoint) } - return nil, fmt.Errorf("invalid endpoint") } |