diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-06 23:40:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-06 23:40:21 +0800 |
commit | 548e1041718ffc0ee0659f1ff99b37cad38190c0 (patch) | |
tree | dc354aae2e364e4a2a426efc0ca5f6412acfa980 /cmd/mist/gui.go | |
parent | 8d9be18b296afb8302249dcc96651aabb0975e26 (diff) | |
parent | e64f727529287b7414af6d1f482ea5f318cbd2eb (diff) | |
download | dexon-548e1041718ffc0ee0659f1ff99b37cad38190c0.tar.gz dexon-548e1041718ffc0ee0659f1ff99b37cad38190c0.tar.zst dexon-548e1041718ffc0ee0659f1ff99b37cad38190c0.zip |
Merge branch 'poc-9' of github.com-obscure:ethereum/go-ethereum into poc-9
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r-- | cmd/mist/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go index a69049894..869b689dd 100644 --- a/cmd/mist/gui.go +++ b/cmd/mist/gui.go @@ -99,7 +99,7 @@ func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, session st plugins: make(map[string]plugin), serviceEvents: make(chan ServEv, 1), } - data, _ := ethutil.ReadAllFile(path.Join(ethutil.Config.ExecPath, "plugins.json")) + data, _ := ethutil.ReadAllFile(path.Join(ethereum.DataDir, "plugins.json")) json.Unmarshal([]byte(data), &gui.plugins) return gui |