mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
12 lines
247 B
Go
12 lines
247 B
Go
package blob
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/db"
|
|
)
|
|
|
|
type Server struct {
|
|
ChainInfoFetcher blockchain.ChainInfoFetcher
|
|
BeaconDB db.ReadOnlyDatabase
|
|
}
|