mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
a8793c9f21
* collect unique idxs and avoid races * fix init * remove unused type (lint error) --------- Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
8 lines
258 B
Go
8 lines
258 B
Go
package blockchain
|
|
|
|
// SendNewBlobEvent sends a message to the BlobNotifier channel that the blob
|
|
// for the blocroot `root` is ready in the database
|
|
func (s *Service) SendNewBlobEvent(root [32]byte, index uint64) {
|
|
s.blobNotifiers.forRoot(root) <- index
|
|
}
|