From 53eb0f60bc3bbc5b9456e043a1ff26b74a941ebe Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Tue, 25 Nov 2025 03:10:58 +0530 Subject: [PATCH] fix another build issue --- src/test/app/TestHostFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/app/TestHostFunctions.h b/src/test/app/TestHostFunctions.h index 4445f1ae73..fe0cc6f289 100644 --- a/src/test/app/TestHostFunctions.h +++ b/src/test/app/TestHostFunctions.h @@ -1060,7 +1060,7 @@ struct PerfHostFunctions : public TestHostFunctions return Unexpected(HostFunctionError::INVALID_PARAMS); PublicKey const pk(pubkey); - return verify(pk, message, signature, /*canonical*/ true); + return verify(pk, message, signature); } Expected