jtexpress #13
|
@ -48,7 +48,7 @@ func (c *Client) EstimateFee(req *EstimateFeeReq) (r Response) {
|
||||||
r.Request.Body = pjson.ToBytes(body)
|
r.Request.Body = pjson.ToBytes(body)
|
||||||
r.Request.URL = path
|
r.Request.URL = path
|
||||||
resp, err := c.httpClient.R().
|
resp, err := c.httpClient.R().
|
||||||
SetFormData(body).
|
SetMultipartFormData(body).
|
||||||
Post(path)
|
Post(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
||||||
|
@ -72,7 +72,7 @@ func (c *Client) CancelOrder(req *CancelOrderReq) (r Response) {
|
||||||
r.Request.Body = pjson.ToBytes(body)
|
r.Request.Body = pjson.ToBytes(body)
|
||||||
r.Request.URL = path
|
r.Request.URL = path
|
||||||
resp, err := c.httpClient.R().
|
resp, err := c.httpClient.R().
|
||||||
SetFormData(body).
|
SetMultipartFormData(body).
|
||||||
Post(path)
|
Post(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
||||||
|
@ -98,7 +98,7 @@ func (c *Client) CreateOrder(req *CreateOrderReq) (r Response) {
|
||||||
r.Request.URL = path
|
r.Request.URL = path
|
||||||
|
|
||||||
resp, err := c.httpClient.R().
|
resp, err := c.httpClient.R().
|
||||||
SetFormData(body).
|
SetMultipartFormData(body).
|
||||||
Post(path)
|
Post(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
||||||
|
|
Loading…
Reference in New Issue