aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal')
-rw-r--r--ethereal/gui.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go
index 1e6fac4de..ea91622c6 100644
--- a/ethereal/gui.go
+++ b/ethereal/gui.go
@@ -41,7 +41,6 @@ type Gui struct {
// Create GUI, but doesn't start it
func NewWindow(ethereum *eth.Ethereum, session string, logLevel int) *Gui {
-
db, err := ethdb.NewLDBDatabase("tx_database")
if err != nil {
panic(err)
@@ -273,7 +272,11 @@ func (gui *Gui) update() {
reactor.Subscribe("newBlock", blockChan)
reactor.Subscribe("newTx:pre", txChan)
reactor.Subscribe("newTx:post", txChan)
- //reactor.Subscribe("object:"+string(namereg), objectChan)
+
+ nameReg := ethpub.EthereumConfig(gui.eth.StateManager()).NameReg()
+ if nameReg != nil {
+ reactor.Subscribe("object:"+string(nameReg.Address()), objectChan)
+ }
reactor.Subscribe("peerList", peerChan)
ticker := time.NewTicker(5 * time.Second)