aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-15 07:07:40 +0800
committerobscuren <geffobscura@gmail.com>2014-08-15 07:07:40 +0800
commitc362172567e7bd499ea0d0bcf84c54a9b7788614 (patch)
treee1b15a860e6c2a286d441ef1e69bdfd0f0b64efb /ethereal/gui.go
parentaadc5be3ff9e3818e41d83910b9730e5f1af042e (diff)
downloadgo-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.gz
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.bz2
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.lz
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.xz
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.zst
go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.zip
Got rid of warnings and updated storage getters
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r--ethereal/gui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go
index 276c1a348..c0584936d 100644
--- a/ethereal/gui.go
+++ b/ethereal/gui.go
@@ -57,7 +57,7 @@ func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, clientIden
panic(err)
}
- pub := ethpub.NewPEthereum(ethereum)
+ pub := ethpub.New(ethereum)
return &Gui{eth: ethereum, txDb: db, pub: pub, logLevel: ethlog.LogLevel(logLevel), Session: session, open: false, clientIdentity: clientIdentity, config: config}
}