prysm-pulse/beacon-chain/p2p/sender.go
Preston Van Loon 0b8cbd06b6
Add flag for testing new p2p (#3243)
* refactor a bit to select p2p

* lint

* fix build

* fix build

* fix build

* fix build

* fix build
2019-08-19 17:20:56 -04:00

15 lines
278 B
Go

package p2p
import (
"context"
"github.com/gogo/protobuf/proto"
"github.com/libp2p/go-libp2p-core/peer"
)
// Send a message to a specific peer.
// TODO(3147): Implement.
func (s *Service) Send(ctx context.Context, message proto.Message, pid peer.ID) error {
return nil
}