Skip to content

Commit 8ec4660

Browse files
committed
fix
1 parent 8274fdb commit 8ec4660

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

miner/worker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ func (w *worker) newWorkLoop(recommit time.Duration) {
469469
case head := <-w.chainHeadCh:
470470
clearPending(head.Block.NumberU64())
471471
timestamp = time.Now().Unix()
472-
commit(true, commitInterruptNewHead)
472+
commit(false, commitInterruptNewHead)
473473

474474
case <-timer.C:
475475
// If mining is running resubmit a new work cycle periodically to pull in

params/version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
const (
2525
VersionMajor = 5 // Major version component of the current release
2626
VersionMinor = 1 // Minor version component of the current release
27-
VersionPatch = 30 // Patch version component of the current release
28-
VersionMeta = "mainnet" // Version metadata to append to the version string
27+
VersionPatch = 31 // Patch version component of the current release
28+
VersionMeta = "4844-v0" // Version metadata to append to the version string
2929
)
3030

3131
// Version holds the textual version string.

0 commit comments

Comments
 (0)