Update main.go (#3472)

This commit is contained in:
Preston Van Loon 2019-09-15 10:47:23 -07:00 committed by GitHub
parent c6236df603
commit 86d4eb5868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,8 @@ import (
var (
privateKey = flag.String("private", "", "Base-64 encoded Private key to use for calculation of ENR")
udpPort = flag.Int("port", 0, "UDP Port to use for calculation of ENR")
tcpPort = flag.Int("port", 0, "TCP Port to use for calculation of ENR")
udpPort = flag.Int("udp-port", 0, "UDP Port to use for calculation of ENR")
tcpPort = flag.Int("tcp-port", 0, "TCP Port to use for calculation of ENR")
ipAddr = flag.String("ipAddress", "", "IP to use in calculation of ENR")
outfile = flag.String("out", "", "Filepath to write ENR")
)