Skip to content

Commit

Permalink
Merge tag 'v1.1.0' into release/polygon-1.x-fh2.3
Browse files Browse the repository at this point in the history
# Conflicts:
#	packaging/templates/package_scripts/control
#	packaging/templates/package_scripts/control.arm64
#	packaging/templates/package_scripts/control.profile.amd64
#	packaging/templates/package_scripts/control.profile.arm64
#	packaging/templates/package_scripts/control.validator
#	packaging/templates/package_scripts/control.validator.arm64
#	params/version.go
  • Loading branch information
maoueh committed Nov 15, 2023
2 parents b428b22 + cf18ecc commit ee9db11
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 12 deletions.
10 changes: 9 additions & 1 deletion builder/files/genesis-mainnet-v1.json

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions internal/cli/server/chains/mainnet.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packaging/templates/package_scripts/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion packaging/templates/package_scripts/control.arm64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion packaging/templates/package_scripts/control.profile.amd64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor-profile
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion packaging/templates/package_scripts/control.profile.arm64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor-profile
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion packaging/templates/package_scripts/control.validator
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor-profile
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: bor-profile
Version: 1.1.0-beta4
Version: 1.1.0
Section: develop
Priority: standard
Maintainer: Polygon <[email protected]>
Expand Down
9 changes: 9 additions & 0 deletions params/config.go

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "beta4-fh2.3" // Version metadata to append to the version string
VersionMajor = 1 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "fh2.3" // Version metadata to append to the version string

FirehoseVersionMajor = 2
FirehoseVersionMinor = 3
Expand Down
6 changes: 5 additions & 1 deletion tests/bor/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,11 @@ func buildNextBlock(t *testing.T, _bor consensus.Engine, chain *core.BlockChain,
ctx := context.Background()

// Finalize and seal the block
block, _ := _bor.FinalizeAndAssemble(ctx, chain, b.header, state, b.txs, nil, b.receipts, []*types.Withdrawal{})
block, err := _bor.FinalizeAndAssemble(ctx, chain, b.header, state, b.txs, nil, b.receipts, nil)

if err != nil {
panic(fmt.Sprintf("error finalizing block: %v", err))
}

// Write state changes to db
root, err := state.Commit(chain.Config().IsEIP158(b.header.Number))
Expand Down

0 comments on commit ee9db11

Please sign in to comment.