[R4R] Prepare for v1.1.12#1023
Merged
unclezoro merged 1 commit intobnb-chain:developfrom Jul 28, 2022
Merged
Conversation
unclezoro
reviewed
Jul 28, 2022
CHANGELOG.md
Outdated
| * [\#926](https://github.com/bnb-chain/bsc/pull/926) Separate Processing and State Verification on BSC | ||
|
|
||
| IMPROVEMENT | ||
| * [\#816](https://github.com/bnb-chain/bsc/pull/816) merge go-ethereum |
Contributor
There was a problem hiding this comment.
it is too simple, which release?
unclezoro
reviewed
Jul 28, 2022
CHANGELOG.md
Outdated
| ## v1.1.12 | ||
|
|
||
| FEATURE | ||
| * [\#862](https://github.com/bnb-chain/bsc/pull/862) add prune ancient feature |
Contributor
There was a problem hiding this comment.
The description is too simple here.
unclezoro
reviewed
Jul 28, 2022
CHANGELOG.md
Outdated
|
|
||
| IMPROVEMENT | ||
| * [\#816](https://github.com/bnb-chain/bsc/pull/816) merge go-ethereum | ||
| * [\#950](https://github.com/bnb-chain/bsc/pull/950) Improve state prefetch |
unclezoro
reviewed
Jul 28, 2022
CHANGELOG.md
Outdated
| * [\#1015](https://github.com/bnb-chain/bsc/pull/1015) disable noisy logs since system transaction will cause gas capping | ||
|
|
||
| BUGFIX | ||
| * [\#932](https://github.com/bnb-chain/bsc/pull/932) fix pipecommit issue |
yutianwu
approved these changes
Jul 28, 2022
forcodedancing
approved these changes
Jul 28, 2022
unclezoro
approved these changes
Jul 28, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Release v1.1.12 is a performance release. the following two features are introduced in this release.
Separate Processing and State Verification.Pruning AncientDB inline at runtime.Separate Processing and State Verification
Separate Processing and State Verification is introduced in #926. it introduces two type nodes to make full use of different storage, one is named fast node, and the other is named verify node. The fast node will do block processing with snapshot, it will do all verification against blocks except state root. The verify node receives diffhash from the fast node and then responds MPT root to the fast node.
If you want to use this feature, See more details here
Pruning AncientDB inline at runtime
A new flag is introduced to prune ancient undesired block data at runtime, it will discard
block,receipt,headerin the ancient DB to save space.Example:
geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 --puneancient.Note: once turned on, the ancient data will not be recovered again
Command Changes
After merging the Ethereum version, some Flag parameters have changed, please refer to the following list.
Removed
--yolov3--vm.ewasm--vm.evm--rpc(use --http)--rpcaddr(use --http.addr)--rpccorsdomain(use --http.port)--rpcvhosts(use --http.corsdomain)--rpcapi(use --http.vhosts)Added
--dev.gaslimitInitial block gas limit--sepoliaSepolia network: pre-configured proof-of-work test network--override.arrowglacierManually specify Arrow Glacier fork-block, overriding the bundled setting--override.terminaltotaldifficultyManually specify TerminalTotalDifficulty, overriding the bundled setting--rpc.evmtimeoutSets a timeout used for eth_call (0=infinite)--gpo.ignorepriceGas price below which gpo will ignore transactions--metrics.influxdbv2Enable metrics export/push to an external InfluxDB v2 database--metrics.influxdb.tokenToken to authorize access to the database (v2 only)--metrics.influxdb.bucketInfluxDB bucket name to push reported metrics to (v2 only)--metrics.influxdb.organizationInfluxDB organization name (v2 only)Changed
--syncemoderemoved thefastmodeRationale
N/A
Example
N/A
Changes
FEATURE
IMPROVEMENT
BUGFIX