From 4c68cbaaeb9a0b45a26bcb81146d9c243ebc5cc1 Mon Sep 17 00:00:00 2001 From: Roshan <48975233+pythonberg1997@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:22:43 +0800 Subject: [PATCH] fix: bsc `BLS_SIGNATURE_VALIDATION` precompile contract error (#125) --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 8 ++++---- Cargo.toml | 10 +++++----- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b073838626..bcee125600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.lock b/Cargo.lock index 71201ffd22..1658cf550d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9795,7 +9795,7 @@ dependencies = [ [[package]] name = "revm" version = "12.1.0" -source = "git+https://github.com/bnb-chain/revm?tag=v1.0.1#0ba000fbdf2bfb9b01c5cb862b0f13b5ab4ee98d" +source = "git+https://github.com/bnb-chain/revm?rev=7a4d6dd982bb3db6d604e289890ef303c22d998d#7a4d6dd982bb3db6d604e289890ef303c22d998d" dependencies = [ "auto_impl", "cfg-if", @@ -9827,7 +9827,7 @@ dependencies = [ [[package]] name = "revm-interpreter" version = "8.1.0" -source = "git+https://github.com/bnb-chain/revm?tag=v1.0.1#0ba000fbdf2bfb9b01c5cb862b0f13b5ab4ee98d" +source = "git+https://github.com/bnb-chain/revm?rev=7a4d6dd982bb3db6d604e289890ef303c22d998d#7a4d6dd982bb3db6d604e289890ef303c22d998d" dependencies = [ "revm-primitives", "serde", @@ -9836,7 +9836,7 @@ dependencies = [ [[package]] name = "revm-precompile" version = "9.2.0" -source = "git+https://github.com/bnb-chain/revm?tag=v1.0.1#0ba000fbdf2bfb9b01c5cb862b0f13b5ab4ee98d" +source = "git+https://github.com/bnb-chain/revm?rev=7a4d6dd982bb3db6d604e289890ef303c22d998d#7a4d6dd982bb3db6d604e289890ef303c22d998d" dependencies = [ "alloy-rlp", "aurora-engine-modexp", @@ -9864,7 +9864,7 @@ dependencies = [ [[package]] name = "revm-primitives" version = "7.1.0" -source = "git+https://github.com/bnb-chain/revm?tag=v1.0.1#0ba000fbdf2bfb9b01c5cb862b0f13b5ab4ee98d" +source = "git+https://github.com/bnb-chain/revm?rev=7a4d6dd982bb3db6d604e289890ef303c22d998d#7a4d6dd982bb3db6d604e289890ef303c22d998d" dependencies = [ "alloy-eips", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index 24c55325cb..3b89c653fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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" }