Skip to content

Commit

Permalink
refactor:camel case implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
naneey committed Sep 26, 2023
1 parent facef24 commit 83a6eef
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,6 @@ public void removeAdmin(Address address) { // change made
Context.require(check, TAG + ": Address not registered as admin.");
ArrayDBUtils.removeArrayItem(admins, address);
}
// voting -> register, not valid
// start of application -> setPreps -> register is valid prep


@Override
@External
Expand Down Expand Up @@ -634,7 +631,7 @@ public Map<String, BigInteger> checkClaimableSponsorBond(Address address) {
@SuppressWarnings("unchecked")
private BigInteger getMaxCapBNUsd() {
SetterGetter setterGetter = new SetterGetter();
Map<String, BigInteger> cpfAmount = callScore(Map.class, setterGetter.cpfScore.get(), "get_remaining_swap_amount");
Map<String, BigInteger> cpfAmount = callScore(Map.class, setterGetter.cpfScore.get(), "getRemainingSwapAmount");
return cpfAmount.get("maxCap");
}

Expand Down

0 comments on commit 83a6eef

Please sign in to comment.