mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
3861c0cf06
Former-commit-id: 0ecc597de035e61ca219f4f30695cb8db59c129b [formerly da9312c1c9d69010083f94f387fe6a52aa817683] Former-commit-id: 8c8c218e16ef248ae8954168cf7bf5aa6ed6839d
11 lines
360 B
Go
11 lines
360 B
Go
// Package params defines important configuration options to be used when instantiating
|
|
// objects within the sharding package. For example, it defines objects such as a
|
|
// ShardConfig that will be useful when creating new shard instances.
|
|
package params
|
|
|
|
import "github.com/ethereum/go-ethereum/common"
|
|
|
|
type ShardConfig struct {
|
|
SMCAddress common.Address
|
|
}
|