Skip to content

Commit 09deb81

Browse files
committed
remove unused function
1 parent 01fc841 commit 09deb81

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

crates/rec_aggregation/src/xmss_aggregate.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,6 @@ fn compile_xmss_aggregation_program() -> Bytecode {
7373
compile_program(program_str)
7474
}
7575

76-
fn exec_phony_xmss(bytecode: &Bytecode, log_lifetimes: &[usize]) -> ExecutionResult {
77-
let mut rng = StdRng::seed_from_u64(0);
78-
let message_hash: [F; 8] = rng.random();
79-
let slot = 1111;
80-
let (xmss_pub_keys, all_signatures) = xmss_generate_phony_signatures(log_lifetimes, message_hash, slot);
81-
let public_input = build_public_input(&xmss_pub_keys, message_hash, slot);
82-
let private_input = build_private_input(&all_signatures);
83-
execute_bytecode(bytecode, (&public_input, &private_input), false, &vec![])
84-
}
85-
8676
pub fn run_xmss_benchmark(log_lifetimes: &[usize], tracing: bool) {
8777
if tracing {
8878
utils::init_tracing();

0 commit comments

Comments
 (0)