aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 11:34:35 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 11:34:35 +0800
commitd791fe4975fa62618f854a86f1648d5fe7081b79 (patch)
treeddbbcc32c6cbbf03b06930a75780b4d3e8c08af8 /rpc/api.go
parent19360c00795d356d052a379663c3f36aedba3f9e (diff)
downloadgo-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar.gz
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar.bz2
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar.lz
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar.xz
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.tar.zst
go-tangerine-d791fe4975fa62618f854a86f1648d5fe7081b79.zip
Remove unnecessary event mux
Diffstat (limited to 'rpc/api.go')
-rw-r--r--rpc/api.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/rpc/api.go b/rpc/api.go
index f31b9a344..cef5e4689 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -12,7 +12,6 @@ import (
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
- "github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/xeth"
)
@@ -24,7 +23,6 @@ var (
type EthereumApi struct {
eth *xeth.XEth
xethMu sync.RWMutex
- mux *event.TypeMux
// // Register keeps a list of accounts and transaction data
// regmut sync.Mutex
@@ -34,10 +32,10 @@ type EthereumApi struct {
}
func NewEthereumApi(eth *xeth.XEth, dataDir string) *EthereumApi {
+ // What about when dataDir is empty?
db, _ := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
api := &EthereumApi{
eth: eth,
- mux: eth.Backend().EventMux(),
db: db,
}