Take a look at the outgoing_messages method in the Client struct:
Evidently, in the case of an error, the method changes the context of the error to Error::QueryAxelarnetGateway, but it does not provide detailed information about the original error. This can make it difficult to diagnose the root cause of the error, as the original error information is lost.
Ensure that the original error information is preserved and included in the new context to provide more detailed error messages.
Pseudo fix:
