Skip to content

Commit 4d4941d

Browse files
author
Ubuntu
committed
it works
1 parent 29af7a8 commit 4d4941d

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

Cargo.lock

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ kona-mpt = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add
5050
kona-derive = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add-converter", default-features = false }
5151
kona-executor = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add-converter" }
5252
kona-client = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add-converter" }
53-
# kona-host = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add-converter" }
53+
kona-host = { git = "https://github.com/moongate-forks/kona", branch = "ratan/add-converter" }
5454
# kona-common = { path = "../kona/crates/common" }
5555
# kona-common-proc = { path = "../kona/crates/common-proc" }
5656
# kona-preimage = { path = "../kona/crates/preimage", features = ["rkyv"] }

elf/range-elf

4.47 KB
Binary file not shown.

utils/host/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use alloy_consensus::Header;
77
use alloy_primitives::B256;
88
use kona_host::HostCli;
99
use op_succinct_client_utils::{types::AggregationInputs, RawBootInfo};
10-
use sp1_sdk::{SP1Proof, SP1Stdin};
10+
use sp1_sdk::{block_on, SP1Proof, SP1Stdin};
1111

1212
use anyhow::Result;
1313

@@ -52,7 +52,7 @@ pub fn get_proof_stdin(host_cli: &HostCli) -> Result<SP1Stdin> {
5252
let disk_kv_store = host_cli.construct_kv_store();
5353

5454
// Convert the disk KV store to a memory KV store
55-
let mem_kv_store = disk_kv_store.blocking_read().to_memory_store();
55+
let mem_kv_store = block_on(disk_kv_store.read()).to_memory_store();
5656

5757
let mut serializer = CompositeSerializer::new(
5858
AlignedSerializer::new(AlignedVec::new()),

0 commit comments

Comments
 (0)