Skip to content

Commit

Permalink
Add underscore to improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-zack authored and marcos-iov committed Jan 15, 2025
1 parent aaf7285 commit 2545809
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ private FederationMainNetConstants() {
).map(hex -> ECKey.fromPublicOnly(Hex.decode(hex))).toList();
federationChangeAuthorizer = new AddressBasedAuthorizer(federationChangeAuthorizedKeys, AddressBasedAuthorizer.MinimumRequiredCalculation.MAJORITY);

validationPeriodDurationInBlocks = 20000L;
validationPeriodDurationInBlocks = 20_000L;

federationActivationAgeLegacy = 18500L;
federationActivationAge = 40320L;
federationActivationAgeLegacy = 18_500L;
federationActivationAge = 40_320L;

fundsMigrationAgeSinceActivationBegin = 0L;
fundsMigrationAgeSinceActivationEnd = 10585L;
fundsMigrationAgeSinceActivationEnd = 10_585L;
specialCaseFundsMigrationAgeSinceActivationEnd = 172_800L; // 60 days, considering 1 block every 30 seconds

erpFedPubKeysList = Stream.of(
Expand Down

0 comments on commit 2545809

Please sign in to comment.