Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package p2p (PoC7) #192

Merged
merged 12 commits into from
Dec 5, 2014
6 changes: 3 additions & 3 deletions p2p/client_identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"runtime"
)

// should be used in Peer handleHandshake, incorporate Caps, ProtocolVersion, Pubkey etc.
// ClientIdentity represents the identity of a peer.
type ClientIdentity interface {
String() string
Pubkey() []byte
String() string // human readable identity
Pubkey() []byte // 512-bit public key
}

type SimpleClientIdentity struct {
Expand Down
275 changes: 0 additions & 275 deletions p2p/connection.go

This file was deleted.

Loading