cmd/peerserver: fix for new client identity type

This commit is contained in:
Felix Lange 2015-01-06 11:09:47 +01:00
parent be97785856
commit 545e14691b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func main() {
srv := p2p.Server{
MaxPeers: 100,
Identity: p2p.NewSimpleClientIdentity("Ethereum(G)", "0.1", "Peer Server Two", string(marshaled)),
Identity: p2p.NewSimpleClientIdentity("Ethereum(G)", "0.1", "Peer Server Two", marshaled),
ListenAddr: ":30301",
NAT: p2p.UPNP(),
}