mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
12 lines
351 B
Go
12 lines
351 B
Go
package stateutil
|
|
|
|
import (
|
|
fieldparams "github.com/OffchainLabs/prysm/v7/config/fieldparams"
|
|
"github.com/OffchainLabs/prysm/v7/encoding/ssz"
|
|
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
func PendingDepositsRoot(slice []*ethpb.PendingDeposit) ([32]byte, error) {
|
|
return ssz.SliceRoot(slice, fieldparams.PendingDepositsLimit)
|
|
}
|