Skip to content

Commit dd083aa

Browse files
committed
Merge branch 'release/1.4'
Conflicts: VERSION cmd/geth/main.go
2 parents 566af6e + f213a9d commit dd083aa

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2
1+
1.4.3

cmd/geth/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const (
5050
clientIdentifier = "Geth" // Client identifier to advertise over the network
5151
versionMajor = 1 // Major version component of the current release
5252
versionMinor = 4 // Minor version component of the current release
53-
versionPatch = 2 // Patch version component of the current release
53+
versionPatch = 3 // Patch version component of the current release
5454
versionMeta = "stable" // Version metadata to append to the version string
5555

5656
versionOracle = "0xfa7b9770ca4cb04296cac84f37736d4041251cdf" // Ethereum address of the Geth release oracle

miner/worker.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ func newWorker(config *core.ChainConfig, coinbase common.Address, eth core.Backe
145145
fullValidation: false,
146146
}
147147
worker.events = worker.mux.Subscribe(core.ChainHeadEvent{}, core.ChainSideEvent{}, core.TxPreEvent{})
148-
worker.wg.Add(1)
149148
go worker.update()
150149

151150
go worker.wait()
@@ -188,8 +187,6 @@ func (self *worker) start() {
188187
}
189188

190189
func (self *worker) stop() {
191-
// Quit update.
192-
self.events.Unsubscribe()
193190
self.wg.Wait()
194191

195192
self.mu.Lock()
@@ -224,7 +221,6 @@ func (self *worker) unregister(agent Agent) {
224221
}
225222

226223
func (self *worker) update() {
227-
defer self.wg.Done()
228224
for event := range self.events.Chan() {
229225
// A real event arrived, process interesting content
230226
switch ev := event.Data.(type) {

0 commit comments

Comments
 (0)