diff options
author | zelig <viktor.tron@gmail.com> | 2015-01-09 14:21:47 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-01-09 14:21:47 +0800 |
commit | b3161f5803fdab9531c611659b7827ff1a2699dd (patch) | |
tree | 8e990b73858c4222d16a33c55119bf3ee56e2068 /eth | |
parent | 5a9952c7b47f20451feea1158286450e08b85551 (diff) | |
parent | 26f066f0c7570bcca43299721c2b7a1a70186ee3 (diff) | |
download | dexon-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.gz dexon-b3161f5803fdab9531c611659b7827ff1a2699dd.tar.zst dexon-b3161f5803fdab9531c611659b7827ff1a2699dd.zip |
Merge remote-tracking branch 'upstream/develop' into develop
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/eth/backend.go b/eth/backend.go index 02d3dc942..ad0486309 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -134,24 +134,20 @@ func New(config *Config) (*Ethereum, error) { eth.blockPool = NewBlockPool(hasBlock, insertChain, ezp.Verify) ethProto := EthProtocol(eth.txPool, eth.chainManager, eth.blockPool) - protocols := []p2p.Protocol{ethProto} - - if config.Shh { - eth.whisper = whisper.New() - protocols = append(protocols, eth.whisper.Protocol()) - } + protocols := []p2p.Protocol{ethProto, eth.whisper.Protocol()} nat, err := p2p.ParseNAT(config.NATType, config.PMPGateway) if err != nil { return nil, err } + fmt.Println(nat) eth.net = &p2p.Server{ Identity: clientId, MaxPeers: config.MaxPeers, Protocols: protocols, Blacklist: eth.blacklist, - NAT: nat, + NAT: p2p.UPNP(), NoDial: !config.Dial, } |