Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
## v1.5.5
v1.5.5 mainly did a upstream code sync, it catches up to Geth of date around 5th-Feb-2025 to sync the latest Praque hard fork changes, see: https://github.com/bnb-chain/bsc/pull/2856

Besides the code sync, there are a few improvement PRs of BSC:
### IMPROVEMENT
* [\#2846](https://github.com/bnb-chain/bsc/pull/2846) tracing: pass *tracing.Hooks around instead of vm.Config
* [\#2850](https://github.com/bnb-chain/bsc/pull/2850) metric: revert default expensive metrics in blockchain
* [\#2851](https://github.com/bnb-chain/bsc/pull/2851) eth/tracers: fix call nil OnSystemTxFixIntrinsicGas
* [\#2862](https://github.com/bnb-chain/bsc/pull/2862) cmd/jsutils/getchainstatus.js: add GetEip7623
* [\#2867](https://github.com/bnb-chain/bsc/pull/2867) p2p: lowered log lvl for failed enr request

## v1.5.4
NA
### BUGFIX
* [\#2874](https://github.com/bnb-chain/bsc/pull/2874) crypto: add IsOnCurve check


## v1.5.3
### BUGFIX
Expand Down
2 changes: 1 addition & 1 deletion cmd/jsutils/getchainstatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ async function getKeyParameters() {
}

// 9.cmd: "getEip7623", usage:
// node getEip7623.js GetEip7736 \
// node getEip7623.js GetEip7623 \
// --rpc https://bsc-testnet-dataseed.bnbchain.org \
// --startNum 40000001 --endNum 40000005
async function getEip7623() {
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ package version
const (
Major = 1 // Major version component of the current release
Minor = 5 // Minor version component of the current release
Patch = 4 // Patch version component of the current release
Patch = 5 // Patch version component of the current release
Meta = "" // Version metadata to append to the version string
)