mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
912b3b65bd
* sharding: Fix mainchain.Client starting RPC connections during ShardEthereum.New. Fix graceful stop * sharding: Just pass the cli.Context rather than keeping it on the shardEthereum * sharding: add doc * sharding: add doc * Sharding: remove exgtra newline * sharding:fix lint Former-commit-id: fdaf8160245d9233b693f685ba6078e4b15fa279 [formerly f7fa71912b7d8340ede6cd08b357056fafbab014] Former-commit-id: 0e8bfbbc579451178f76263364fdbcd00a91d651
10 lines
268 B
Go
10 lines
268 B
Go
package mainchain
|
|
|
|
import "github.com/ethereum/go-ethereum/sharding"
|
|
|
|
// Verifies that SMCClient implements the Client interface.
|
|
var _ = Client(&SMCClient{})
|
|
|
|
// Verifies that SMCCLient implements the sharding Service inteface.
|
|
var _ = sharding.Service(&SMCClient{})
|