mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
0b8cbd06b6
* refactor a bit to select p2p * lint * fix build * fix build * fix build * fix build * fix build
15 lines
278 B
Go
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
|
|
}
|