mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 04:54:05 -05:00
7 lines
207 B
Go
7 lines
207 B
Go
package state
|
|
|
|
// WriteOnlyGloas defines a struct which only has write access to Gloas field methods.
|
|
type WriteOnlyGloas interface {
|
|
UpdateExecutionPayloadAvailabilityAtIndex(idx uint64, val byte) error
|
|
}
|