mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
12 lines
350 B
Go
12 lines
350 B
Go
|
package core
|
||
|
|
||
|
import "github.com/ledgerwatch/erigon/common"
|
||
|
|
||
|
// See https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md#payloadattributesv1
|
||
|
type BlockProposerParametersPOS struct {
|
||
|
ParentHash common.Hash
|
||
|
Timestamp uint64
|
||
|
PrevRandao common.Hash
|
||
|
SuggestedFeeRecipient common.Address
|
||
|
}
|