Failed to call custom RPC that exists in nakama panel

I have created a new function in lua on the nakama server. And it works correctly when I run it there. But when I try to call it from my Godot 4 code. It gives me this error. I’ve tried several things but can’t get it to work. Attached images.



image

I’m not seeing any errors in the logs there, those are just debug statements likely telling you that the HTTP request is being freed.

Are you seeing the correct log entries in the Nakama server output (e.g. rpcReward resp:...)?

It doesn’t look like you’re returning the wallet object from the get_wallet_async() call.

TRUE! the problem was that the code in the runtime file was wrong. I did not have the return with the object correctly. Thanks!