Skip to content

Commit

Permalink
Merge branch 'release/1.4'
Browse files Browse the repository at this point in the history
Conflicts:
	VERSION
	cmd/geth/main.go
  • Loading branch information
obscuren committed May 10, 2016
2 parents 566af6e + f213a9d commit dd083aa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.2
1.4.3
2 changes: 1 addition & 1 deletion cmd/geth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const (
clientIdentifier = "Geth" // Client identifier to advertise over the network
versionMajor = 1 // Major version component of the current release
versionMinor = 4 // Minor version component of the current release
versionPatch = 2 // Patch version component of the current release
versionPatch = 3 // Patch version component of the current release
versionMeta = "stable" // Version metadata to append to the version string

versionOracle = "0xfa7b9770ca4cb04296cac84f37736d4041251cdf" // Ethereum address of the Geth release oracle
Expand Down
4 changes: 0 additions & 4 deletions miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ func newWorker(config *core.ChainConfig, coinbase common.Address, eth core.Backe
fullValidation: false,
}
worker.events = worker.mux.Subscribe(core.ChainHeadEvent{}, core.ChainSideEvent{}, core.TxPreEvent{})
worker.wg.Add(1)
go worker.update()

go worker.wait()
Expand Down Expand Up @@ -188,8 +187,6 @@ func (self *worker) start() {
}

func (self *worker) stop() {
// Quit update.
self.events.Unsubscribe()
self.wg.Wait()

self.mu.Lock()
Expand Down Expand Up @@ -224,7 +221,6 @@ func (self *worker) unregister(agent Agent) {
}

func (self *worker) update() {
defer self.wg.Done()
for event := range self.events.Chan() {
// A real event arrived, process interesting content
switch ev := event.Data.(type) {
Expand Down

0 comments on commit dd083aa

Please sign in to comment.