prysm-pulse/sharding/collator_test.go
Raul Jordan a9afdd90ef propose collation called on geteligibleproposer
Former-commit-id: 0a23d54aa3006d103bb7123bcfe0ac2ca3a2b027 [formerly 7266cc53ca4d6826b4a54d30391f9c5e5b0b7d10]
Former-commit-id: 6b33ca471ede8696fc83285ae426645308a4c6fe
2018-02-05 22:41:40 -06:00

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) {
}