Skip to content

Commit

Permalink
feat(host-utils): serializer heap
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Oct 26, 2024
1 parent 5dfe420 commit 5063135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub fn get_proof_stdin(host_cli: &HostCli) -> Result<SP1Stdin> {
AlignedSerializer::new(AlignedVec::new()),
// Note: This value corresponds to the size of the heap needed to serialize the KV store.
// Increase this value if we start running into serialization issues.
HeapScratch::<33554432>::new(),
HeapScratch::<67108864>::new(),
SharedSerializeMap::new(),
);
// Serialize the underlying KV store.
Expand Down

0 comments on commit 5063135

Please sign in to comment.