mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
83af9a5694
* making needed changes to beacon API based on removal of blobsidecar from block contents * fixing tests and reverting some changes to be addressed later * fixing generated code from protos * gaz * fixing get blob handler and adding blob storage to the blob service * updating unit tests * WIP * wip tests * got tests passing but needs cleanup * removing gomod and gosum changes * fixing more tests * fixing more tests * fixing more tests * gaz * moving some proto types around * removing unneeded unit test * fixing proposer paths * adding more tests * fixing more tests * improving more unit tests * updating one blob only unit test * changing arguments of buildBlobSidecar * reverting a change based on feedback * terence's review items * fixing test based on new develop changes * radek's comments * addressed more comments from radek * adding in blobs to test data * fixing casing in test * removing extra line * fixing issue from bad merge * Update beacon-chain/rpc/eth/beacon/handlers_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/rpc/eth/beacon/handlers_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/rpc/eth/beacon/handlers_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/rpc/eth/blob/handlers.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * moving core getblob business logic to blocker based on radek's comment * fixing mock blocker * gaz --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl>
94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
package validator
|
|
|
|
import (
|
|
"errors"
|
|
"sync"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/blocks"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/interfaces"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
enginev1 "github.com/prysmaticlabs/prysm/v4/proto/engine/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
|
)
|
|
|
|
var bundleCache = &blobsBundleCache{}
|
|
|
|
// BlobsBundleCache holds the KZG commitments and other relevant sidecar data for a local beacon block.
|
|
type blobsBundleCache struct {
|
|
sync.Mutex
|
|
slot primitives.Slot
|
|
bundle *enginev1.BlobsBundle
|
|
}
|
|
|
|
// add adds a blobs bundle to the cache.
|
|
// same slot overwrites the previous bundle.
|
|
func (c *blobsBundleCache) add(slot primitives.Slot, bundle *enginev1.BlobsBundle) {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
if slot >= c.slot {
|
|
c.bundle = bundle
|
|
c.slot = slot
|
|
}
|
|
}
|
|
|
|
// get gets a blobs bundle from the cache.
|
|
func (c *blobsBundleCache) get(slot primitives.Slot) *enginev1.BlobsBundle {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
if c.slot == slot {
|
|
return c.bundle
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// prune acquires the lock before pruning.
|
|
func (c *blobsBundleCache) prune(minSlot primitives.Slot) {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
if minSlot > c.slot {
|
|
c.slot = 0
|
|
c.bundle = nil
|
|
}
|
|
}
|
|
|
|
// buildBlobSidecars given a block, builds the blob sidecars for the block.
|
|
func buildBlobSidecars(blk interfaces.SignedBeaconBlock, blobs [][]byte, kzgproofs [][]byte) ([]*ethpb.BlobSidecar, error) {
|
|
if blk.Version() < version.Deneb {
|
|
return nil, nil // No blobs before deneb.
|
|
}
|
|
denebBlk, err := blk.PbDenebBlock()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cLen := len(denebBlk.Block.Body.BlobKzgCommitments)
|
|
if cLen != len(blobs) || cLen != len(kzgproofs) {
|
|
return nil, errors.New("blob KZG commitments don't match number of blobs or KZG proofs")
|
|
}
|
|
blobSidecars := make([]*ethpb.BlobSidecar, cLen)
|
|
header, err := blk.Header()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
body := blk.Block().Body()
|
|
for i := range blobSidecars {
|
|
proof, err := blocks.MerkleProofKZGCommitment(body, i)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
blobSidecars[i] = ðpb.BlobSidecar{
|
|
Index: uint64(i),
|
|
Blob: blobs[i],
|
|
KzgCommitment: denebBlk.Block.Body.BlobKzgCommitments[i],
|
|
KzgProof: kzgproofs[i],
|
|
SignedBlockHeader: header,
|
|
CommitmentInclusionProof: proof,
|
|
}
|
|
}
|
|
return blobSidecars, nil
|
|
}
|