Get peers returns now both in and outbound peers

This commit is contained in:
obscuren
2014-01-31 11:57:56 +01:00
parent dfa38b3f91
commit da66eddfcc
2 changed files with 18 additions and 2 deletions

View File

@ -335,9 +335,9 @@ func (p *Peer) pushHandshake() error {
// Pushes the list of outbound peers to the client when requested
func (p *Peer) pushPeers() {
outPeers := make([]interface{}, len(p.ethereum.OutboundPeers()))
outPeers := make([]interface{}, len(p.ethereum.InOutPeers()))
// Serialise each peer
for i, peer := range p.ethereum.OutboundPeers() {
for i, peer := range p.ethereum.InOutPeers() {
outPeers[i] = peer.RlpData()
}