diff --git a/Cargo.lock b/Cargo.lock index cf91c97..f960d90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1527,7 +1527,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "plonky2" version = "0.1.4" -source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=71dff6e9827f501bc59416dc25ce06c4aec030ab#71dff6e9827f501bc59416dc25ce06c4aec030ab" +source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=536cd1c89c7d5fc546ed4f1b8c9dd653300878ae#536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" dependencies = [ "ahash", "anyhow", @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "plonky2_evm" version = "0.1.1" -source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=71dff6e9827f501bc59416dc25ce06c4aec030ab#71dff6e9827f501bc59416dc25ce06c4aec030ab" +source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=536cd1c89c7d5fc546ed4f1b8c9dd653300878ae#536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" dependencies = [ "anyhow", "bytes", @@ -1585,7 +1585,7 @@ dependencies = [ [[package]] name = "plonky2_field" version = "0.1.1" -source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=71dff6e9827f501bc59416dc25ce06c4aec030ab#71dff6e9827f501bc59416dc25ce06c4aec030ab" +source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=536cd1c89c7d5fc546ed4f1b8c9dd653300878ae#536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" dependencies = [ "anyhow", "itertools", @@ -1600,7 +1600,7 @@ dependencies = [ [[package]] name = "plonky2_maybe_rayon" version = "0.1.1" -source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=71dff6e9827f501bc59416dc25ce06c4aec030ab#71dff6e9827f501bc59416dc25ce06c4aec030ab" +source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=536cd1c89c7d5fc546ed4f1b8c9dd653300878ae#536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" dependencies = [ "rayon", ] @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "plonky2_util" version = "0.1.1" -source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=71dff6e9827f501bc59416dc25ce06c4aec030ab#71dff6e9827f501bc59416dc25ce06c4aec030ab" +source = "git+https://github.com/0xPolygonZero/plonky2.git?rev=536cd1c89c7d5fc546ed4f1b8c9dd653300878ae#536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" [[package]] name = "portable-atomic" diff --git a/common/Cargo.toml b/common/Cargo.toml index 315501d..be8beb5 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -12,5 +12,5 @@ anyhow = { version = "1.0.71", features = ["backtrace"] } ethereum-types = "0.14.1" eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" } flexi_logger = { version = "0.25.4", features = ["async"] } -plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "71dff6e9827f501bc59416dc25ce06c4aec030ab" } +plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" } serde = {version = "1.0.163", features = ["derive"] } diff --git a/eth_test_parser/Cargo.toml b/eth_test_parser/Cargo.toml index 3ee0583..7c3c553 100644 --- a/eth_test_parser/Cargo.toml +++ b/eth_test_parser/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies] common = { path = "../common" } eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" } -plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "71dff6e9827f501bc59416dc25ce06c4aec030ab" } +plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" } anyhow = { version = "1.0.71", features = ["backtrace"] } bytes = "1.4.0" diff --git a/evm_test_runner/Cargo.toml b/evm_test_runner/Cargo.toml index 0457813..15e4b35 100644 --- a/evm_test_runner/Cargo.toml +++ b/evm_test_runner/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" [dependencies] common = { path = "../common" } -plonky2 = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "71dff6e9827f501bc59416dc25ce06c4aec030ab" } -plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "71dff6e9827f501bc59416dc25ce06c4aec030ab" } +plonky2 = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" } +plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "536cd1c89c7d5fc546ed4f1b8c9dd653300878ae" } anyhow = { version = "1.0", features = ["backtrace"] } askama = "0.12.0" diff --git a/evm_test_runner/src/plonky2_runner.rs b/evm_test_runner/src/plonky2_runner.rs index 2c2e6a2..d1993cc 100644 --- a/evm_test_runner/src/plonky2_runner.rs +++ b/evm_test_runner/src/plonky2_runner.rs @@ -293,6 +293,7 @@ fn run_test_and_get_test_result(test: TestVariantRunInfo, witness_only: bool) -> &StarkConfig::standard_fast_config(), inputs, &mut TimingTree::default(), + None, ); timing.filter(Duration::from_millis(100)).print();