diff --git a/tig-protocol/src/context.rs b/tig-protocol/src/context.rs index 6a93cf2b..43b3be68 100644 --- a/tig-protocol/src/context.rs +++ b/tig-protocol/src/context.rs @@ -140,6 +140,7 @@ pub trait Context { settings: &BenchmarkSettings, details: &BenchmarkDetails, solutions_metadata: &Vec, + solution_data: &SolutionData, ) -> ContextResult; async fn add_proof_to_mempool( &mut self, diff --git a/tig-protocol/src/submit_benchmark.rs b/tig-protocol/src/submit_benchmark.rs index 2e4d6505..54f0fed8 100644 --- a/tig-protocol/src/submit_benchmark.rs +++ b/tig-protocol/src/submit_benchmark.rs @@ -28,6 +28,7 @@ pub(crate) async fn execute( num_solutions: solutions_meta_data.len() as u32, }, solutions_meta_data, + solution_data, ) .await .unwrap_or_else(|e| panic!("add_benchmark_to_mempool error: {:?}", e));