Commit 1aeadc1 1 parent 343b315 commit 1aeadc1 Copy full SHA for 1aeadc1
File tree 3 files changed +22
-3
lines changed
3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1
- MAINNET_FILE_URL = " https://github.com/binance-chain/bsc/releases/download/v1.1.7 /mainnet.zip"
2
- TESTNET_FILE_URL = " https://github.com/binance-chain/bsc/releases/download/v1.1.7 /testnet.zip"
1
+ MAINNET_FILE_URL = " https://github.com/binance-chain/bsc/releases/download/v1.1.8 /mainnet.zip"
2
+ TESTNET_FILE_URL = " https://github.com/binance-chain/bsc/releases/download/v1.1.8 /testnet.zip"
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v1.1.9
4
+
5
+ IMPROVEMENT
6
+ * [ \# 792] ( https://github.com/binance-chain/bsc/pull/792 ) add shared storage for prefetching state data
7
+ * [ \# 795] ( https://github.com/binance-chain/bsc/pull/795 ) implement state verification pipeline in pipecommit
8
+ * [ \# 803] ( https://github.com/binance-chain/bsc/pull/803 ) prefetch state data during the mining process
9
+ * [ \# 812] ( https://github.com/bnb-chain/bsc/pull/812 ) skip verification on account storage root to tolerate with fastnode when doing diffsync
10
+ * [ \# 818] ( https://github.com/bnb-chain/bsc/pull/818 ) add shared storage to the prefetcher of miner
11
+ * [ \# 820] ( https://github.com/bnb-chain/bsc/pull/820 ) disable diffsync when pipecommit is enabled
12
+ * [ \# 830] ( https://github.com/bnb-chain/bsc/pull/830 ) change the number of prefetch threads
13
+
14
+ BUGFIX
15
+ * [ \# 797] ( https://github.com/bnb-chain/bsc/pull/797 ) fix race condition on preimage in pipecommit
16
+ * [ \# 808] ( https://github.com/bnb-chain/bsc/pull/808 ) fix code of difflayer not assign when new smart contract created
17
+ * [ \# 817] ( https://github.com/bnb-chain/bsc/pull/817 ) fix bugs of prune block tool
18
+ * [ \# 834] ( https://github.com/bnb-chain/bsc/pull/834 ) fix deadlock when failed to verify state root in pipecommit
19
+ * [ \# 835] ( https://github.com/bnb-chain/bsc/pull/835 ) fix deadlock on miner module when failed to commit trie
20
+ * [ \# 842] ( https://github.com/bnb-chain/bsc/pull/842 ) fix invalid nil check of statedb in diffsync
21
+
3
22
## v1.1.8
4
23
FEATURES
5
24
* [ \# 668] ( https://github.com/binance-chain/bsc/pull/668 ) implement State Verification && Snapshot Commit pipeline
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
const (
24
24
VersionMajor = 1 // Major version component of the current release
25
25
VersionMinor = 1 // Minor version component of the current release
26
- VersionPatch = 8 // Patch version component of the current release
26
+ VersionPatch = 9 // Patch version component of the current release
27
27
VersionMeta = "" // Version metadata to append to the version string
28
28
)
29
29
You can’t perform that action at this time.
0 commit comments