From 02cc702d0fb3bcf5672fce3f2f41ff09b72e96be Mon Sep 17 00:00:00 2001 From: Franko Date: Wed, 18 May 2016 21:48:06 -0400 Subject: [PATCH] make jsre console accept both exp and eth cmds --- jsre/expanse_js.go | 1 + 1 file changed, 1 insertion(+) diff --git a/jsre/expanse_js.go b/jsre/expanse_js.go index 6cc314a742..d3cf48b285 100644 --- a/jsre/expanse_js.go +++ b/jsre/expanse_js.go @@ -2544,6 +2544,7 @@ function Web3 (provider) { this._requestManager = new RequestManager(provider); this.currentProvider = provider; this.exp = new Exp(this); + this.eth = this.exp; this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this);