Skip to content

Commit e06e34c

Browse files
committed
update dependencies
1 parent 7262738 commit e06e34c

File tree

7 files changed

+21
-67
lines changed

7 files changed

+21
-67
lines changed

Cargo.lock

Lines changed: 14 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ repository = "https://github.com/scroll-tech/scroll"
1818
version = "4.5.8"
1919

2020
[workspace.dependencies]
21-
scroll-zkvm-prover-euclid = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_2", package = "scroll-zkvm-prover" }
22-
scroll-zkvm-verifier-euclid = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_2", package = "scroll-zkvm-verifier" }
23-
scroll-zkvm-types = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_2" }
21+
scroll-zkvm-prover-euclid = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_3", package = "scroll-zkvm-prover" }
22+
scroll-zkvm-verifier-euclid = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_3", package = "scroll-zkvm-verifier" }
23+
scroll-zkvm-types = { git = "https://github.com/scroll-tech/zkvm-prover", branch = "refactor/scroll_3" }
2424

2525
sbv-primitives = { git = "https://github.com/scroll-tech/stateless-block-verifier", branch = "zkvm/euclid-upgrade", features = ["scroll"] }
2626
sbv-utils = { git = "https://github.com/scroll-tech/stateless-block-verifier", branch = "zkvm/euclid-upgrade" }

common/libzkp/impl/src/tasks/batch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ impl TryFrom<BatchProvingTask> for ProvingTask {
9494
.into_iter()
9595
.map(|w_proof| w_proof.proof.into_root_proof().expect("expect root proof"))
9696
.collect(),
97-
serialized_witness: to_rkyv_bytes::<RancorError>(&witness)?.into_vec(),
97+
serialized_witness: vec![to_rkyv_bytes::<RancorError>(&witness)?.into_vec()],
9898
vk: Vec::new(),
9999
})
100100
}

common/libzkp/impl/src/tasks/bundle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl TryFrom<BundleProvingTask> for ProvingTask {
118118
.into_iter()
119119
.map(|w_proof| w_proof.proof.into_root_proof().expect("expect root proof"))
120120
.collect(),
121-
serialized_witness: to_rkyv_bytes::<RancorError>(&witness)?.to_vec(),
121+
serialized_witness: vec![to_rkyv_bytes::<RancorError>(&witness)?.to_vec()],
122122
vk: Vec::new(),
123123
})
124124
}

common/libzkp/impl/src/tasks/chunk.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl TryFrom<ChunkProvingTask> for ProvingTask {
7272
identifier: value.identifier(),
7373
fork_name: value.fork_name,
7474
aggregated_proofs: Vec::new(),
75-
serialized_witness: to_rkyv_bytes::<RancorError>(&witness)?.to_vec(),
75+
serialized_witness: vec![to_rkyv_bytes::<RancorError>(&witness)?.to_vec()],
7676
vk: Vec::new(),
7777
})
7878
}

zkvm-prover/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ edition = "2021"
88
[dependencies]
99
scroll-zkvm-types.workspace = true
1010
scroll-zkvm-prover-euclid.workspace = true
11-
sbv-primitives.workspace = true
1211
scroll-proving-sdk = { git = "https://github.com/scroll-tech/scroll-proving-sdk.git", branch = "refactor/scroll" }
1312
serde.workspace = true
1413
serde_json.workspace = true

zkvm-prover/config.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"base_url": "<the url of coordinator>",
77
"retry_count": 10,
88
"retry_wait_time_sec": 10,
9-
"connection_timeout_sec": 30
9+
"connection_timeout_sec": 1800
1010
},
1111
"l2geth": {
1212
"endpoint": "<the url of rpc endpoint>"

0 commit comments

Comments
 (0)