aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-05 23:26:39 +0800
committerobscuren <geffobscura@gmail.com>2014-12-05 23:26:39 +0800
commit9925916851c00323336e213fc18c83da5fceee94 (patch)
tree581c3f1c21990d23b306b4a88d19f97fed044ec4 /cmd
parent095cb976758e942b7beba8231686a7738a283e19 (diff)
downloaddexon-9925916851c00323336e213fc18c83da5fceee94.tar
dexon-9925916851c00323336e213fc18c83da5fceee94.tar.gz
dexon-9925916851c00323336e213fc18c83da5fceee94.tar.bz2
dexon-9925916851c00323336e213fc18c83da5fceee94.tar.lz
dexon-9925916851c00323336e213fc18c83da5fceee94.tar.xz
dexon-9925916851c00323336e213fc18c83da5fceee94.tar.zst
dexon-9925916851c00323336e213fc18c83da5fceee94.zip
upped proto version and modified block pool
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/main.go2
-rw-r--r--cmd/mist/gui.go4
-rw-r--r--cmd/mist/main.go2
3 files changed, 2 insertions, 6 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index 14921bf10..43551fb3a 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -30,7 +30,7 @@ import (
const (
ClientIdentifier = "Ethereum(G)"
- Version = "0.7.8"
+ Version = "0.7.9"
)
var clilogger = logger.NewLogger("CLI")
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go
index 6a28b48f9..0b03cdc1b 100644
--- a/cmd/mist/gui.go
+++ b/cmd/mist/gui.go
@@ -389,7 +389,6 @@ func (gui *Gui) update() {
gui.loadAddressBook()
gui.loadMergedMiningOptions()
gui.setPeerInfo()
- //gui.readPreviousTransactions()
}()
for _, plugin := range gui.plugins {
@@ -417,9 +416,6 @@ func (gui *Gui) update() {
core.TxPostEvent{},
)
- // nameReg := gui.pipe.World().Config().Get("NameReg")
- // mux.Subscribe("object:"+string(nameReg.Address()), objectChan)
-
go func() {
defer events.Unsubscribe()
for {
diff --git a/cmd/mist/main.go b/cmd/mist/main.go
index 5503097f2..14336b4e8 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -31,7 +31,7 @@ import (
const (
ClientIdentifier = "Mist"
- Version = "0.7.8"
+ Version = "0.7.9"
)
var ethereum *eth.Ethereum