mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-30 00:23:46 +00:00
16 lines
316 B
Go
16 lines
316 B
Go
package storage
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
"github.com/protolambda/zrnt/eth2/beacon/common"
|
|
)
|
|
|
|
type PortalStorageConfig struct {
|
|
StorageCapacityMB uint64
|
|
DB *sql.DB
|
|
NodeId enode.ID
|
|
Spec *common.Spec
|
|
NetworkName string
|
|
}
|