diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-21 07:50:20 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-21 07:50:20 +0800 |
commit | 7c4ff3abb4693bf93b2b348f572f14f2cfcf9142 (patch) | |
tree | 6383e60d84c133eaa54625e7663759ffac30829e /eth | |
parent | 483d43a15af11a9c456e4d9df0520441b947cd35 (diff) | |
download | go-tangerine-7c4ff3abb4693bf93b2b348f572f14f2cfcf9142.tar.gz go-tangerine-7c4ff3abb4693bf93b2b348f572f14f2cfcf9142.tar.zst go-tangerine-7c4ff3abb4693bf93b2b348f572f14f2cfcf9142.zip |
eth: enable whisper again
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go index b086d6a56..141c6c605 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -206,7 +206,7 @@ func New(config *Config) (*Ethereum, error) { ethProto := EthProtocol(config.ProtocolVersion, config.NetworkId, eth.txPool, eth.chainManager, eth.blockPool) protocols := []p2p.Protocol{ethProto} if config.Shh { - //protocols = append(protocols, eth.whisper.Protocol()) + protocols = append(protocols, eth.whisper.Protocol()) } eth.net = &p2p.Server{ |