diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-16 00:09:14 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-16 00:09:14 +0800 |
commit | 6ff9d5770b332da6d767bc315a54c5a815143aff (patch) | |
tree | 9a11154e2450075cf5ddda9f3058c9f396a3dea3 /eth | |
parent | 455241debb6fa11053bd3a5429cdd9890bb607dc (diff) | |
download | go-tangerine-6ff9d5770b332da6d767bc315a54c5a815143aff.tar.gz go-tangerine-6ff9d5770b332da6d767bc315a54c5a815143aff.tar.zst go-tangerine-6ff9d5770b332da6d767bc315a54c5a815143aff.zip |
Added whisper handler
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eth/backend.go b/eth/backend.go index e275238bd..ef82a5bfc 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -123,6 +123,10 @@ func (s *Ethereum) BlockPool() *BlockPool { return s.blockPool } +func (s *Ethereum) Whisper() *whisper.Whisper { + return s.whisper +} + func (s *Ethereum) EventMux() *event.TypeMux { return s.eventMux } |