aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethereum
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-09 20:50:05 +0800
committerobscuren <geffobscura@gmail.com>2015-03-09 20:50:05 +0800
commit20741a96ac6dc824bcc7d67e7c966fa65cbb2faf (patch)
treebf72d48cca05c1847043b450ff04e92368af8a36 /cmd/ethereum
parent738d6e20f2a229aab15b767cb8ca2d2f9c2f9aa8 (diff)
downloaddexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.gz
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.bz2
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.lz
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.xz
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.zst
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.zip
Updated xeth instances to take extra param for ui.Interface
Please be aware that if any of the instances on xeth.frontend are called the program will crash due to the default, temporarily, frontend interface.
Diffstat (limited to 'cmd/ethereum')
-rw-r--r--cmd/ethereum/js.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/ethereum/js.go b/cmd/ethereum/js.go
index d5cf62146..e3165d3f5 100644
--- a/cmd/ethereum/js.go
+++ b/cmd/ethereum/js.go
@@ -46,7 +46,7 @@ func execJsFile(ethereum *eth.Ethereum, filename string) {
if err != nil {
utils.Fatalf("%v", err)
}
- re := javascript.NewJSRE(xeth.New(ethereum))
+ re := javascript.NewJSRE(xeth.New(ethereum, nil))
if _, err := re.Run(string(content)); err != nil {
utils.Fatalf("Javascript Error: %v", err)
}
@@ -61,7 +61,7 @@ type repl struct {
}
func runREPL(ethereum *eth.Ethereum) {
- xeth := xeth.New(ethereum)
+ xeth := xeth.New(ethereum, nil)
repl := &repl{
re: javascript.NewJSRE(xeth),
xeth: xeth,