From b595276143b311e1b7afb90a9ab500dde3bc202b Mon Sep 17 00:00:00 2001 From: Alivecow Date: Sat, 23 Nov 2024 09:44:47 +0100 Subject: [PATCH] fix: Fix incorrect naming of response json object for monic --- src/tasks/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/mod.rs b/src/tasks/mod.rs index 87ca189..2cc97b7 100644 --- a/src/tasks/mod.rs +++ b/src/tasks/mod.rs @@ -135,7 +135,7 @@ pub fn task_deploy(testcase: &Testcase) -> Result { } "gfpoly_make_monic" => { let result = gfpoly_make_monic(args)?; - let json = json!({"S" : result.to_c_array()}); + let json = json!({"A*" : result.to_c_array()}); Ok(json) }