diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 07:07:40 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 07:07:40 +0800 |
commit | c362172567e7bd499ea0d0bcf84c54a9b7788614 (patch) | |
tree | e1b15a860e6c2a286d441ef1e69bdfd0f0b64efb /ethereal/ext_app.go | |
parent | aadc5be3ff9e3818e41d83910b9730e5f1af042e (diff) | |
download | dexon-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.gz dexon-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.zst dexon-c362172567e7bd499ea0d0bcf84c54a9b7788614.zip |
Got rid of warnings and updated storage getters
Diffstat (limited to 'ethereal/ext_app.go')
-rw-r--r-- | ethereal/ext_app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ext_app.go b/ethereal/ext_app.go index 627f9e9ca..37e9676ff 100644 --- a/ethereal/ext_app.go +++ b/ethereal/ext_app.go @@ -44,7 +44,7 @@ type ExtApplication struct { func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication { app := &ExtApplication{ - ethpub.NewPEthereum(lib.eth), + ethpub.New(lib.eth), lib.eth, make(chan ethreact.Event, 100), make(chan ethreact.Event, 100), |