aboutsummaryrefslogtreecommitdiffstats
path: root/peer.go
diff options
context:
space:
mode:
Diffstat (limited to 'peer.go')
-rw-r--r--peer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/peer.go b/peer.go
index bd75a0039..410e310f5 100644
--- a/peer.go
+++ b/peer.go
@@ -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()
}