From c33b0ae4638668d711c76e7a247795b48d028d2f Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Tue, 25 Nov 2025 02:58:57 +0530 Subject: [PATCH] fix build issue --- src/xrpld/app/wasm/detail/HostFuncImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrpld/app/wasm/detail/HostFuncImpl.cpp b/src/xrpld/app/wasm/detail/HostFuncImpl.cpp index e61d39f9aa..a0b81a2df3 100644 --- a/src/xrpld/app/wasm/detail/HostFuncImpl.cpp +++ b/src/xrpld/app/wasm/detail/HostFuncImpl.cpp @@ -424,7 +424,7 @@ WasmHostFunctionsImpl::checkSignature( return Unexpected(HostFunctionError::INVALID_PARAMS); PublicKey const pk(pubkey); - return verify(pk, message, signature, /*canonical*/ true); + return verify(pk, message, signature); } Expected