diff --git a/msg.pb.go b/msg.pb.go index a3fdb1a..66bc3a5 100644 --- a/msg.pb.go +++ b/msg.pb.go @@ -99,6 +99,7 @@ func init() { type MsgRpcService interface { SendMsg(in *Request, out *Response) error + SendNotcie(in *Request, out *Response) error } // AcceptMsgRpcServiceClient accepts connections on the listener and serves requests @@ -173,6 +174,9 @@ func NewMsgRpcServiceClient(conn io.ReadWriteCloser) (*MsgRpcServiceClient, *rpc func (c *MsgRpcServiceClient) SendMsg(in *Request, out *Response) error { return c.Call("MsgRpcService.SendMsg", in, out) } +func (c *MsgRpcServiceClient) SendNotcie(in *Request, out *Response) error { + return c.Call("MsgRpcService.SendNotcie", in, out) +} // DialMsgRpcService connects to an MsgRpcService at the specified network address. func DialMsgRpcService(network, addr string) (*MsgRpcServiceClient, *rpc.Client, error) {