[rpc/client/http] set codec on rpc client

This commit is contained in:
Anton Kaliaev
2018-06-27 11:52:21 +04:00
parent ada5ef0669
commit ac12432603

View File

@@ -29,12 +29,13 @@ type HTTP struct {
*WSEvents
}
// New takes a remote endpoint in the form tcp://<host>:<port>
// NewHTTP takes a remote endpoint in the form tcp://<host>:<port>
// and the websocket path (which always seems to be "/websocket")
func NewHTTP(remote, wsEndpoint string) *HTTP {
rc := rpcclient.NewJSONRPCClient(remote)
cdc := rc.Codec()
ctypes.RegisterAmino(cdc)
rc.SetCodec(cdc)
return &HTTP{
rpc: rc,