From 017e879d39edcc1083b5061624b82529e181f560 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Tue, 18 Oct 2022 12:08:43 +0200 Subject: [PATCH] Update evm revision --- Cargo.lock | 8 ++++---- client/rpc/Cargo.toml | 2 +- frame/ethereum/Cargo.toml | 2 +- frame/evm/Cargo.toml | 2 +- frame/evm/test-vector-support/Cargo.toml | 2 +- primitives/evm/Cargo.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c249e9a25e..7a5cc1e469 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1516,7 +1516,7 @@ checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59" [[package]] name = "evm" version = "0.35.0" -source = "git+https://github.com/rust-blockchain/evm?rev=51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c#51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c" +source = "git+https://github.com/rust-blockchain/evm?rev=6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2#6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2" dependencies = [ "auto_impl", "environmental", @@ -1536,7 +1536,7 @@ dependencies = [ [[package]] name = "evm-core" version = "0.35.0" -source = "git+https://github.com/rust-blockchain/evm?rev=51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c#51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c" +source = "git+https://github.com/rust-blockchain/evm?rev=6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2#6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2" dependencies = [ "parity-scale-codec", "primitive-types", @@ -1547,7 +1547,7 @@ dependencies = [ [[package]] name = "evm-gasometer" version = "0.35.0" -source = "git+https://github.com/rust-blockchain/evm?rev=51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c#51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c" +source = "git+https://github.com/rust-blockchain/evm?rev=6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2#6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2" dependencies = [ "environmental", "evm-core", @@ -1558,7 +1558,7 @@ dependencies = [ [[package]] name = "evm-runtime" version = "0.35.0" -source = "git+https://github.com/rust-blockchain/evm?rev=51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c#51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c" +source = "git+https://github.com/rust-blockchain/evm?rev=6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2#6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2" dependencies = [ "auto_impl", "environmental", diff --git a/client/rpc/Cargo.toml b/client/rpc/Cargo.toml index 69aa9993d0..052d6e872d 100644 --- a/client/rpc/Cargo.toml +++ b/client/rpc/Cargo.toml @@ -12,7 +12,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] ethereum = { version = "0.12.0", features = ["with-codec"] } -evm = { git = "https://github.com/rust-blockchain/evm", rev = "51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c" } +evm = { git = "https://github.com/rust-blockchain/evm", rev = "6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2" } futures = "0.3.24" hex = "0.4.3" log = "0.4.17" diff --git a/frame/ethereum/Cargo.toml b/frame/ethereum/Cargo.toml index 3afdc2592f..715db0bc3d 100644 --- a/frame/ethereum/Cargo.toml +++ b/frame/ethereum/Cargo.toml @@ -12,7 +12,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] ethereum = { version = "0.12.0", default-features = false, features = ["with-codec"] } -evm = { git = "https://github.com/rust-blockchain/evm", rev = "51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c", features = ["with-codec"], default-features = false } +evm = { git = "https://github.com/rust-blockchain/evm", rev = "6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2", features = ["with-codec"], default-features = false } serde = { version = "1.0.144", optional = true } # Parity diff --git a/frame/evm/Cargo.toml b/frame/evm/Cargo.toml index 52ffb54fac..2380a7f46f 100644 --- a/frame/evm/Cargo.toml +++ b/frame/evm/Cargo.toml @@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] environmental = { version = "1.1.3", default-features = false, optional = true } -evm = { git = "https://github.com/rust-blockchain/evm", rev = "51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c", default-features = false, features = ["with-codec"] } +evm = { git = "https://github.com/rust-blockchain/evm", rev = "6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2", default-features = false, features = ["with-codec"] } hex = { version = "0.4.3", default-features = false, features = ["alloc"] } log = { version = "0.4.17", default-features = false } serde = { version = "1.0.144", optional = true, features = ["derive"] } diff --git a/frame/evm/test-vector-support/Cargo.toml b/frame/evm/test-vector-support/Cargo.toml index 8c17b94f25..c9439a4488 100644 --- a/frame/evm/test-vector-support/Cargo.toml +++ b/frame/evm/test-vector-support/Cargo.toml @@ -8,7 +8,7 @@ description = "Test vector support for EVM pallet." repository = "https://github.com/paritytech/frontier/" [dependencies] -evm = { git = "https://github.com/rust-blockchain/evm", rev = "51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c", features = ["with-codec"] } +evm = { git = "https://github.com/rust-blockchain/evm", rev = "6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2", features = ["with-codec"] } hex = "0.4.3" serde = { version = "1.0.101", features = ["derive"] } serde_json = "1.0" diff --git a/primitives/evm/Cargo.toml b/primitives/evm/Cargo.toml index aa4a52cc5a..935fe6f08b 100644 --- a/primitives/evm/Cargo.toml +++ b/primitives/evm/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/paritytech/frontier/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -evm = { git = "https://github.com/rust-blockchain/evm", rev = "51b8c2ce3104265e1fd5bb0fe5cdfd2e0938239c", default-features = false, features = ["with-codec"] } +evm = { git = "https://github.com/rust-blockchain/evm", rev = "6534c1dd8ad77b53d05032f80e8a5f2de4d37fd2", default-features = false, features = ["with-codec"] } serde = { version = "1.0.144", features = ["derive"], optional = true } # Parity