Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
- fix majority rate to 0.66
  • Loading branch information
sdpisreddevil committed Oct 23, 2024
1 parent db8a6eb commit 1c5919f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ public class Constants {


public static final BigInteger EXA = BigInteger.valueOf(1000000000000000000L);
public static final Integer MINIMUM_PREPS = 7;

public static final Integer MAX_PROJECT_PERIOD = 12;
public static final double MAJORITY = 0.67;
public static final double MAJORITY = 0.66;
public static final BigInteger DAY_COUNT = BigInteger.valueOf(15);
public static final BigInteger BLOCKS_DAY_COUNT = BigInteger.valueOf(43120);

Expand Down Expand Up @@ -140,6 +139,7 @@ public class Constants {
public static final String PAY_PENALTY = "payPenalty";
public static final String IS_REGISTERED = "isRegistered";
public static final String IS_PREP = "isPRep";
public static final String IS_COUNCIL_MANAGER = "isCouncilManager";
public static final String PENALTY_AMOUNT1 = "penaltyAmount";
public static final String TRANSFER = "transfer";
public static final String METHOD = "method";
Expand Down

0 comments on commit 1c5919f

Please sign in to comment.