Skip to content

Commit

Permalink
提币接口添加新参数
Browse files Browse the repository at this point in the history
  • Loading branch information
pl committed Aug 13, 2021
1 parent f7b4437 commit c5abb0d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public class Withdraw {

private String currency;

private String chain;

public String getAmount() {
return amount;
}
Expand Down Expand Up @@ -76,4 +78,12 @@ public String getTag() {
public void setTag(String tag) {
this.tag = tag;
}

public String getChain() {
return chain;
}

public void setChain(String chain) {
this.chain = chain;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public void withdraw() {
withdraw.setTo_address("");
withdraw.setTrade_pwd("");
withdraw.setFee("0");
withdraw.setChain("0");

JSONObject result = this.accountAPIService.withdraw(withdraw);
this.toResultString(AccountAPITests.LOG, "result", result);
Expand Down

0 comments on commit c5abb0d

Please sign in to comment.