mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
a9afdd90ef
Former-commit-id: 0a23d54aa3006d103bb7123bcfe0ac2ca3a2b027 [formerly 7266cc53ca4d6826b4a54d30391f9c5e5b0b7d10] Former-commit-id: 6b33ca471ede8696fc83285ae426645308a4c6fe
20 lines
306 B
Go
20 lines
306 B
Go
package sharding
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"sync"
|
|
"testing"
|
|
)
|
|
|
|
// FakeEthService based on implementation of internal/ethapi.Client
|
|
type FakeEthService struct {
|
|
mu sync.Mutex
|
|
|
|
getCodeResp hexutil.Bytes
|
|
getCodeErr error
|
|
}
|
|
|
|
func TestSubscribeHeaders(t *testing.T) {
|
|
|
|
}
|