aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-04-18 07:50:31 +0800
committerFelix Lange <fjl@twurst.com>2015-04-30 20:57:33 +0800
commitfc747ef4a649cd90aec5193a8af6b7accb5eb03f (patch)
treeb81f4b1fb00abd2bf05b4d586b0b3f08d2011cd5 /eth
parent3fef60190384106af390dd23a65384b9cc6e4a28 (diff)
downloadgo-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar.gz
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar.bz2
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar.lz
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar.xz
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.tar.zst
go-tangerine-fc747ef4a649cd90aec5193a8af6b7accb5eb03f.zip
p2p/discover: new endpoint format
This commit changes the discovery protocol to use the new "v4" endpoint format, which allows for separate UDP and TCP ports and makes it possible to discover the UDP address after NAT.
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/eth/backend.go b/eth/backend.go
index c5fa328b0..6a5792c46 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -277,8 +277,8 @@ func (s *Ethereum) NodeInfo() *NodeInfo {
NodeUrl: node.String(),
NodeID: node.ID.String(),
IP: node.IP.String(),
- DiscPort: node.DiscPort,
- TCPPort: node.TCPPort,
+ DiscPort: int(node.UDP),
+ TCPPort: int(node.TCP),
ListenAddr: s.net.ListenAddr,
Td: s.ChainManager().Td().String(),
}