v0.1.4 - Rename cashu wallet module API functions to remove _json suffix and keep tool-facing names consistent

This commit is contained in:
Your Name
2026-03-19 20:43:13 -04:00
parent c88b20430a
commit afed0812a3
8 changed files with 477 additions and 31 deletions
+6
View File
@@ -259,6 +259,12 @@ char* tools_execute_legacy(tools_context_t* ctx, const char* tool_name, const ch
if (strcmp(tool_name, "cashu_wallet_receive_token") == 0) {
return execute_cashu_wallet_receive_token(ctx, args_json);
}
if (strcmp(tool_name, "cashu_wallet_mints_get") == 0) {
return execute_cashu_wallet_mints_get(ctx, args_json);
}
if (strcmp(tool_name, "cashu_wallet_mints_set") == 0) {
return execute_cashu_wallet_mints_set(ctx, args_json);
}
return json_error("unknown tool");
}