Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add helpers for container bulk init; applies to auth metering #975

Merged
merged 3 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions soroban-env-host/benches/common/cost_types/guard_frame.rs

This file was deleted.

2 changes: 0 additions & 2 deletions soroban-env-host/benches/common/cost_types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ mod compute_ecdsa_secp256k1_sig;
mod compute_ed25519_pubkey;
mod compute_keccak256_hash;
mod compute_sha256_hash;
mod guard_frame;
mod host_mem_alloc;
mod host_mem_cmp;
mod host_mem_cpy;
Expand All @@ -27,7 +26,6 @@ pub(crate) use compute_ecdsa_secp256k1_sig::*;
pub(crate) use compute_ed25519_pubkey::*;
pub(crate) use compute_keccak256_hash::*;
pub(crate) use compute_sha256_hash::*;
pub(crate) use guard_frame::*;
pub(crate) use host_mem_alloc::*;
pub(crate) use host_mem_cmp::*;
pub(crate) use host_mem_cpy::*;
Expand Down
1 change: 0 additions & 1 deletion soroban-env-host/benches/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ pub(crate) fn for_each_host_cost_measurement<B: Benchmark>(
call_bench::<B, VmMemReadMeasure>(&mut params)?;
call_bench::<B, VmMemWriteMeasure>(&mut params)?;
call_bench::<B, VisitObjectMeasure>(&mut params)?;
call_bench::<B, GuardFrameMeasure>(&mut params)?;
call_bench::<B, ValXdrConvMeasure>(&mut params)?;
call_bench::<B, ValSerMeasure>(&mut params)?;
call_bench::<B, ValDeserMeasure>(&mut params)?;
Expand Down
Loading