Skip to content

Commit

Permalink
fix: bsc BLS_SIGNATURE_VALIDATION precompile contract error (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonberg1997 committed Aug 30, 2024
1 parent 9dc2aae commit 4c68cba
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## V1.0.3
This is a bugfix version.

### BUGFIX
* [\#119](https://github.com/bnb-chain/reth/pull/119) fix: sidecars missing issue and empty validators election info issue
* [\#122](https://github.com/bnb-chain/reth/pull/122) fix: bsc snapshot issues
* [\#125](https://github.com/bnb-chain/reth/pull/125) fix: bsc `BLS_SIGNATURE_VALIDATION` precompile contract error

## V1.0.2
This release is for BSC mainnet HaberFix and Bohr upgrade and opBNB mainnet Wright upgrade.

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.0.2"
version = "1.0.3"
edition = "2021"
rust-version = "1.79"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -554,10 +554,10 @@ test-fuzz = "5"
iai-callgrind = "0.11"

[patch.crates-io]
revm = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.1" }
revm-interpreter = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.1" }
revm-precompile = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.1" }
revm-primitives = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.1" }
revm = { git = "https://github.com/bnb-chain/revm", rev = "7a4d6dd982bb3db6d604e289890ef303c22d998d" }
revm-interpreter = { git = "https://github.com/bnb-chain/revm", rev = "7a4d6dd982bb3db6d604e289890ef303c22d998d" }
revm-precompile = { git = "https://github.com/bnb-chain/revm", rev = "7a4d6dd982bb3db6d604e289890ef303c22d998d" }
revm-primitives = { git = "https://github.com/bnb-chain/revm", rev = "7a4d6dd982bb3db6d604e289890ef303c22d998d" }
alloy-chains = { git = "https://github.com/bnb-chain/alloy-chains-rs.git", tag = "v1.0.0" }
alloy-rpc-types-eth = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.0" }
alloy-consensus = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.0" }
Expand Down

0 comments on commit 4c68cba

Please sign in to comment.