cosmos-sdk/client/node.go
2018-03-01 02:36:57 +00:00

9 lines
226 B
Go

package client
import rpcclient "github.com/tendermint/tendermint/rpc/client"
// GetNode prepares a simple rpc.Client from the flags
func GetNode(uri string) rpcclient.Client {
return rpcclient.NewHTTP(uri, "/websocket")
}