change body form data
This commit is contained in:
parent
844b01604a
commit
6bf4914ade
|
@ -48,7 +48,7 @@ func (c *Client) EstimateFee(req *EstimateFeeReq) (r Response) {
|
|||
r.Request.Body = pjson.ToBytes(body)
|
||||
r.Request.URL = path
|
||||
resp, err := c.httpClient.R().
|
||||
SetFormData(body).
|
||||
SetMultipartFormData(body).
|
||||
Post(path)
|
||||
if err != nil {
|
||||
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.URL = path
|
||||
resp, err := c.httpClient.R().
|
||||
SetFormData(body).
|
||||
SetMultipartFormData(body).
|
||||
Post(path)
|
||||
if err != nil {
|
||||
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
|
||||
|
||||
resp, err := c.httpClient.R().
|
||||
SetFormData(body).
|
||||
SetMultipartFormData(body).
|
||||
Post(path)
|
||||
if err != nil {
|
||||
r.Error = fmt.Errorf("jtepxress: request %s, err %v", path, err)
|
||||
|
|
Loading…
Reference in New Issue