prysm-pulse/beacon-chain/params/config.go
Raul Jordan 59fc2e13e7 client: Fix P2P Linter Error (#307)
Former-commit-id: 5f673dffed4267c1aca8ebfb4fe182798b9b2d2a [formerly 3fd494231ba5a350ab59a86fcf60ae9f56f1da00]
Former-commit-id: 1506dd418121884a8c7a727f8cf03c12e4c93cc3
2018-07-21 12:20:00 -05:00

21 lines
600 B
Go

package params
const (
// AttesterCount is the number of attesters per committee/
AttesterCount = 32
// AttesterReward determines how much ETH attesters get for performing their duty.
AttesterReward = 1
// EpochLength is the beacon chain epoch length in blocks.
EpochLength = 5
// ShardCount is a fixed number.
ShardCount = 20
// DefaultBalance of a validator.
DefaultBalance = 32000
// DefaultSwitchDynasty value.
DefaultSwitchDynasty = 9999999999999999999
// MaxValidators in the protocol.
MaxValidators = 4194304
// NotariesPerCrosslink fixed to 100.
NotariesPerCrosslink = 100
)