-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[R4R] Prepare for v1.1.12 #1023
Conversation
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is too simple, which release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
CHANGELOG.md
Outdated
## v1.1.12 | ||
|
||
FEATURE | ||
* [\#862](https://github.com/bnb-chain/bsc/pull/862) add prune ancient feature |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description is too simple here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too simple description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too simple description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
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
,header
in 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.gaslimit
Initial block gas limit--sepolia
Sepolia network: pre-configured proof-of-work test network--override.arrowglacier
Manually specify Arrow Glacier fork-block, overriding the bundled setting--override.terminaltotaldifficulty
Manually specify TerminalTotalDifficulty, overriding the bundled setting--rpc.evmtimeout
Sets a timeout used for eth_call (0=infinite)--gpo.ignoreprice
Gas price below which gpo will ignore transactions--metrics.influxdbv2
Enable metrics export/push to an external InfluxDB v2 database--metrics.influxdb.token
Token to authorize access to the database (v2 only)--metrics.influxdb.bucket
InfluxDB bucket name to push reported metrics to (v2 only)--metrics.influxdb.organization
InfluxDB organization name (v2 only)Changed
--syncemode
removed thefast
modeRationale
N/A
Example
N/A
Changes
FEATURE
IMPROVEMENT
BUGFIX