diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 19:05:13 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 19:05:13 +0800 |
commit | d701b232304149f5e9035213d1710ab71cc4a01d (patch) | |
tree | 1420c2e625aa25e7c7543ab07e0307cbaa974031 /ethpub | |
parent | ace551030fbe9288d0d8660f9431867a42e98c88 (diff) | |
download | go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar.gz go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar.bz2 go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar.lz go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar.xz go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.tar.zst go-tangerine-d701b232304149f5e9035213d1710ab71cc4a01d.zip |
Reworking the public js interface (pub) => (pipe)
Diffstat (limited to 'ethpub')
-rw-r--r-- | ethpub/pub.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ethpub/pub.go b/ethpub/pub.go index 762c9a60f..64c08c2f1 100644 --- a/ethpub/pub.go +++ b/ethpub/pub.go @@ -52,12 +52,6 @@ type PEthereum struct { keyManager *ethcrypto.KeyManager } -func NewPEthereum(manager ethchain.EthManager) *PEthereum { - logger.Warnln("DEPRECATED: ethpub.New should be used in favour of ethpub.NewPEthereum") - - return New(manager) -} - func New(manager ethchain.EthManager) *PEthereum { return &PEthereum{ manager, |