From cfdbf3ea77e0bae53cf9e4c4b641937dac45a75a Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Tue, 1 Oct 2024 10:53:25 -0400 Subject: [PATCH] Fix check on missing function implementations from bindings --- wasm_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wasm_test.go b/wasm_test.go index 2015988..f455b3c 100644 --- a/wasm_test.go +++ b/wasm_test.go @@ -74,6 +74,10 @@ func TestPublicFunctions(t *testing.T) { "NewRPCServer": {}, "GenerateRandomReceptionID": {}, "GenerateRandomRPCKey": {}, + + // DeleteCmixInstance is mapped to "UnloadCmix", we + // don't expose the bindings managers to wasm. + "DeleteCmixInstance": {}, } wasmFuncs := getPublicFunctions("wasm", t) bindingsFuncs := getPublicFunctions( -- GitLab