Skip to content

Commit 56edc55

Browse files
committed
PR feedback: fix constants
1 parent 4b4e678 commit 56edc55

File tree

1 file changed

+2
-2
lines changed
  • eth/beacon/state_machines/forks/serenity

1 file changed

+2
-2
lines changed

eth/beacon/state_machines/forks/serenity/configs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
SERENITY_CONFIG = BeaconConfig(
88
# Misc
9-
SHARD_COUNT=2**1, # (= 1,024) shards
9+
SHARD_COUNT=2**10, # (= 1,024) shards
1010
TARGET_COMMITTEE_SIZE=2**8, # (= 256) validators
1111
MAX_ATTESTATIONS_PER_BLOCK=2**7, # (= 128) attestations
1212
MIN_BALANCE=2**4, # (= 16) ETH
@@ -35,5 +35,5 @@
3535
BASE_REWARD_QUOTIENT=2**11, # (= 2,048)
3636
WHISTLEBLOWER_REWARD_QUOTIENT=2**9, # (= 512)
3737
INCLUDER_REWARD_QUOTIENT=2**3, # (= 8)
38-
INACTIVITY_PENALTY_QUOTIENT=2**34, # (= 131,072)
38+
INACTIVITY_PENALTY_QUOTIENT=2**34, # (= 17,179,869,184)
3939
)

0 commit comments

Comments
 (0)