Skip to content

Commit 61ae8e1

Browse files
committed
bump version meta; add 0.0.11 branch to actions
1 parent 0a97e30 commit 61ae8e1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/on-master.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- statediff_at_anyblock-1.9.11
7+
- v1.9.23-statediff-0.0.11
78
- v1.9.23-statediff-0.0.10
89
- v1.9.23-statediff-0.0.9
910

params/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
)
2222

2323
const (
24-
VersionMajor = 1 // Major version component of the current release
25-
VersionMinor = 9 // Minor version component of the current release
26-
VersionPatch = 23 // Patch version component of the current release
27-
VersionMeta = "statediff-0.0.10" // Version metadata to append to the version string
24+
VersionMajor = 1 // Major version component of the current release
25+
VersionMinor = 9 // Minor version component of the current release
26+
VersionPatch = 23 // Patch version component of the current release
27+
VersionMeta = "statediff-0.0.11" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

statediff/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,6 @@ func (sds *Service) StreamCodeAndCodeHash(blockNumber uint64, outChan chan<- Cod
510510
// This operation cannot be performed back past the point of db pruning; it requires an archival node
511511
// for historical data
512512
func (sds *Service) WriteStateDiffAt(blockNumber uint64, params Params) error {
513-
log.Info("writing state diff", "block height", blockNumber)
514513
currentBlock := sds.BlockChain.GetBlockByNumber(blockNumber)
515514
parentRoot := common.Hash{}
516515
if blockNumber != 0 {
@@ -522,6 +521,7 @@ func (sds *Service) WriteStateDiffAt(blockNumber uint64, params Params) error {
522521

523522
// Writes a state diff from the current block, parent state root, and provided params
524523
func (sds *Service) writeStateDiff(block *types.Block, parentRoot common.Hash, params Params) error {
524+
log.Info("writing state diff", "block height", block.Number().Uint64())
525525
var totalDifficulty *big.Int
526526
var receipts types.Receipts
527527
if params.IncludeTD {

0 commit comments

Comments
 (0)