Skip to content

Commit 9cf290e

Browse files
committed
chore: cargo fmt
1 parent cc9037a commit 9cf290e

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

host/src/server/api/v3/proof/batch.rs

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async fn batch_handler(
5555

5656
// For zk_any request, draw zk proof type based on the block hash.
5757
if is_zk_any_request(&opts) {
58-
tracing::info!("bilibili is_zk_any");
5958
match draw_for_zk_any_batch_request(&actor, &opts).await? {
6059
Some(proof_type) => opts["proof_type"] = serde_json::to_value(proof_type).unwrap(),
6160
None => {
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
2-
pub const RISC0_AGGREGATION_ELF: &[u8] = include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-aggregation");
3-
pub const RISC0_AGGREGATION_ID: [u32; 8] = [3693181676, 1423972539, 2575584598, 1469200887, 651718346, 3917396100, 60015622, 535591167];
1+
pub const RISC0_AGGREGATION_ELF: &[u8] =
2+
include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-aggregation");
3+
pub const RISC0_AGGREGATION_ID: [u32; 8] = [
4+
3693181676, 1423972539, 2575584598, 1469200887, 651718346, 3917396100, 60015622, 535591167,
5+
];
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
2-
pub const RISC0_BATCH_ELF: &[u8] = include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-batch");
3-
pub const RISC0_BATCH_ID: [u32; 8] = [1585630346, 345989788, 4151101683, 819276391, 4218347574, 861965425, 3025423219, 3488057193];
1+
pub const RISC0_BATCH_ELF: &[u8] =
2+
include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-batch");
3+
pub const RISC0_BATCH_ID: [u32; 8] = [
4+
1585630346, 345989788, 4151101683, 819276391, 4218347574, 861965425, 3025423219, 3488057193,
5+
];
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
2-
pub const RISC0_GUEST_ELF: &[u8] = include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-guest");
3-
pub const RISC0_GUEST_ID: [u32; 8] = [3813617258, 1499495912, 1722814953, 1786341610, 888187967, 1145233772, 2032049967, 243991141];
1+
pub const RISC0_GUEST_ELF: &[u8] =
2+
include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-guest");
3+
pub const RISC0_GUEST_ID: [u32; 8] = [
4+
3813617258, 1499495912, 1722814953, 1786341610, 888187967, 1145233772, 2032049967, 243991141,
5+
];

0 commit comments

Comments
 (0)