Added (disabled) Jit validation

This commit is contained in:
obscuren
2015-02-01 15:30:29 +01:00
parent d52878c744
commit 8ccde784f9
5 changed files with 43 additions and 4 deletions

View File

@ -141,14 +141,13 @@ func New(config *Config) (*Ethereum, error) {
if err != nil {
return nil, err
}
fmt.Println(nat)
eth.net = &p2p.Server{
Identity: clientId,
MaxPeers: config.MaxPeers,
Protocols: protocols,
Blacklist: eth.blacklist,
NAT: p2p.UPNP(),
NAT: nat,
NoDial: !config.Dial,
}