mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 20:11:21 +00:00
46ecf030f5
* Changed slightly archive format (again) * Added all of the remaining rewards endpoints
20 lines
372 B
Go
20 lines
372 B
Go
package eth2
|
|
|
|
import "github.com/ledgerwatch/erigon/cl/transition/machine"
|
|
|
|
type Impl = impl
|
|
|
|
var _ machine.Interface = (*impl)(nil)
|
|
|
|
type BlockRewardsCollector struct {
|
|
Attestations uint64
|
|
AttesterSlashings uint64
|
|
ProposerSlashings uint64
|
|
SyncAggregate uint64
|
|
}
|
|
|
|
type impl struct {
|
|
FullValidation bool
|
|
BlockRewardsCollector *BlockRewardsCollector
|
|
}
|