public Response inquiryResolution()

in src/main/java/org/openvasp/core/service/FundsProcessingService.java [117:126]


    public Response inquiryResolution(@RequestBody TransferConfirmation transferConfirmation, String q) {
        knowYourCustomer.checkAddress(transferConfirmation.getPaymentAddress());
        TransactionConfirmation confirmation = new TransactionConfirmation();
        confirmation.setTxid(Lnurl.getRandomHexString(32));
        Gson gson = new Gson();
        String payload = gson.toJson(confirmation);
        postRequest(payload, transferConfirmation.getCallback());
        Response response = new Response();
        return new Response();
    }