diff --git a/lockdrop/constants.py b/lockdrop/constants.py index 8503888..87b4f8f 100644 --- a/lockdrop/constants.py +++ b/lockdrop/constants.py @@ -22,8 +22,8 @@ NUM_STARS = pow(2, 16) - pow(2, 8) NUM_PLANETS = pow(2, 32) - pow(2, 16) # Allocation Distribution -STAR_ALLOCATION_PERCENT = Decimal(NUM_STARS / pow(2, 16)) -GALAXY_ALLOCATION_PERCENT = 1 - STAR_ALLOCATION_PERCENT +STAR_ALLOCATION_PERCENT = 0.99 +GALAXY_ALLOCATION_PERCENT = 0.01 # Lockdrop Duration (5 years including 1 leap year) LOCKDROP_DURATION_SECONDS = 5 * 365.25 * 24 * 60 * 60