mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 04:54:05 -05:00
* Ran gopls modernize to fix everything go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./... * Override rules_go provided dependency for golang.org/x/tools to v0.38.0. To update this, checked out rules_go, then ran `bazel run //go/tools/releaser -- upgrade-dep -mirror=false org_golang_x_tools` and copied the patches. * Fix buildtag violations and ignore buildtag violations in external * Introduce modernize analyzer package. * Add modernize "any" analyzer. * Fix violations of any analyzer * Add modernize "appendclipped" analyzer. * Fix violations of appendclipped * Add modernize "bloop" analyzer. * Add modernize "fmtappendf" analyzer. * Add modernize "forvar" analyzer. * Add modernize "mapsloop" analyzer. * Add modernize "minmax" analyzer. * Fix violations of minmax analyzer * Add modernize "omitzero" analyzer. * Add modernize "rangeint" analyzer. * Fix violations of rangeint. * Add modernize "reflecttypefor" analyzer. * Fix violations of reflecttypefor analyzer. * Add modernize "slicescontains" analyzer. * Add modernize "slicessort" analyzer. * Add modernize "slicesdelete" analyzer. This is disabled by default for now. See https://go.dev/issue/73686. * Add modernize "stringscutprefix" analyzer. * Add modernize "stringsbuilder" analyzer. * Fix violations of stringsbuilder analyzer. * Add modernize "stringsseq" analyzer. * Add modernize "testingcontext" analyzer. * Add modernize "waitgroup" analyzer. * Changelog fragment * gofmt * gazelle * Add modernize "newexpr" analyzer. * Disable newexpr until go1.26 * Add more details in WORKSPACE on how to update the override * @nalepae feedback on min() * gofmt * Fix violations of forvar
86 lines
2.8 KiB
Go
86 lines
2.8 KiB
Go
package depositsnapshot
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v7/container/trie"
|
|
"github.com/OffchainLabs/prysm/v7/crypto/hash"
|
|
"github.com/OffchainLabs/prysm/v7/encoding/bytesutil"
|
|
protodb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// DepositTreeSnapshot represents the data used to create a deposit tree given a snapshot.
|
|
type DepositTreeSnapshot struct {
|
|
finalized [][32]byte
|
|
depositRoot [32]byte
|
|
depositCount uint64
|
|
executionBlock executionBlock
|
|
}
|
|
|
|
// CalculateRoot returns the root of a deposit tree snapshot.
|
|
func (ds *DepositTreeSnapshot) CalculateRoot() ([32]byte, error) {
|
|
size := ds.depositCount
|
|
index := len(ds.finalized)
|
|
root := trie.ZeroHashes[0]
|
|
for i := range DepositContractDepth {
|
|
if (size & 1) == 1 {
|
|
if index == 0 {
|
|
break
|
|
}
|
|
index--
|
|
root = hash.Hash(append(ds.finalized[index][:], root[:]...))
|
|
} else {
|
|
root = hash.Hash(append(root[:], trie.ZeroHashes[i][:]...))
|
|
}
|
|
size >>= 1
|
|
}
|
|
return hash.Hash(append(root[:], bytesutil.Uint64ToBytesLittleEndian32(ds.depositCount)...)), nil
|
|
}
|
|
|
|
// fromTreeParts constructs the deposit tree from pre-existing data.
|
|
func fromTreeParts(finalised [][32]byte, depositCount uint64, executionBlock executionBlock) (DepositTreeSnapshot, error) {
|
|
snapshot := DepositTreeSnapshot{
|
|
finalized: finalised,
|
|
depositRoot: trie.ZeroHashes[0],
|
|
depositCount: depositCount,
|
|
executionBlock: executionBlock,
|
|
}
|
|
root, err := snapshot.CalculateRoot()
|
|
if err != nil {
|
|
return snapshot, ErrInvalidSnapshotRoot
|
|
}
|
|
snapshot.depositRoot = root
|
|
return snapshot, nil
|
|
}
|
|
|
|
// ToProto converts the underlying trie into its corresponding proto object.
|
|
func (ds *DepositTreeSnapshot) ToProto() *protodb.DepositSnapshot {
|
|
tree := &protodb.DepositSnapshot{
|
|
Finalized: make([][]byte, len(ds.finalized)),
|
|
DepositRoot: bytesutil.SafeCopyBytes(ds.depositRoot[:]),
|
|
DepositCount: ds.depositCount,
|
|
ExecutionHash: bytesutil.SafeCopyBytes(ds.executionBlock.Hash[:]),
|
|
ExecutionDepth: ds.executionBlock.Depth,
|
|
}
|
|
for i := range ds.finalized {
|
|
tree.Finalized[i] = bytesutil.SafeCopyBytes(ds.finalized[i][:])
|
|
}
|
|
return tree
|
|
}
|
|
|
|
// DepositTreeFromSnapshotProto generates a deposit tree object from a provided snapshot.
|
|
func DepositTreeFromSnapshotProto(snapshotProto *protodb.DepositSnapshot) (*DepositTree, error) {
|
|
finalized := make([][32]byte, len(snapshotProto.Finalized))
|
|
for i := range snapshotProto.Finalized {
|
|
finalized[i] = bytesutil.ToBytes32(snapshotProto.Finalized[i])
|
|
}
|
|
snapshot := DepositTreeSnapshot{
|
|
finalized: finalized,
|
|
depositRoot: bytesutil.ToBytes32(snapshotProto.DepositRoot),
|
|
depositCount: snapshotProto.DepositCount,
|
|
executionBlock: executionBlock{
|
|
Hash: bytesutil.ToBytes32(snapshotProto.ExecutionHash),
|
|
Depth: snapshotProto.ExecutionDepth,
|
|
},
|
|
}
|
|
return fromSnapshot(snapshot)
|
|
}
|