mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-04 19:13:47 +00:00
15 lines
290 B
Go
15 lines
290 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
|
|
}
|