Skip to content

Commit

Permalink
chore: return fund amount implememnted in disqualify project
Browse files Browse the repository at this point in the history
  • Loading branch information
naneey committed Oct 10, 2023
1 parent a694343 commit 4aa3f39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2271,7 +2271,7 @@ public void updateNextBlock(int blockCount) {
private void disqualifyProject(Address sponsorAddress, BigInteger sponsorDepositAmount, String flag) {
Context.require(flag.equals(bnUSD), TAG + " Not supported Token");
JsonObject disqualifyProject = new JsonObject();
disqualifyProject.add("method", "burnAmount");
disqualifyProject.add("method", "returnFundAmount");
JsonObject params = new JsonObject();
params.add(SPONSOR_ADDRESS, sponsorAddress.toString());
disqualifyProject.add("params", params);
Expand Down

0 comments on commit 4aa3f39

Please sign in to comment.