aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-24 00:41:50 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-24 00:41:50 +0800
commit1cf6ca8f10ab7dd5de29caf0d255c93cdec96994 (patch)
tree9e121387e41895b703ff88e5e65b231913d65201 /cmd
parent1e61b75cbf0830a72b40d0eed8f924cb7bb61aa3 (diff)
downloaddexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar.gz
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar.bz2
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar.lz
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar.xz
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.tar.zst
dexon-1cf6ca8f10ab7dd5de29caf0d255c93cdec96994.zip
Add Close() method to EthereumApi
To close the handler for LDB
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/js.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/ethereum/js.go b/cmd/ethereum/js.go
index 88d16d6a8..6f0ac526f 100644
--- a/cmd/ethereum/js.go
+++ b/cmd/ethereum/js.go
@@ -91,6 +91,7 @@ func newJSRE(ethereum *eth.Ethereum, libPath string) *jsre {
func (js *jsre) apiBindings() {
ethApi := rpc.NewEthereumApi(js.xeth, js.ethereum.DataDir)
+ ethApi.Close()
//js.re.Bind("jeth", rpc.NewJeth(ethApi, js.re.ToVal))
jeth := rpc.NewJeth(ethApi, js.re.ToVal, js.re)