undo ineffective change

This commit is contained in:
boufni95 2026-03-12 19:16:30 +00:00 committed by Patrick Mulligan
parent adb581a018
commit b08e7c134a

View file

@ -96,7 +96,7 @@ export default class {
async NewInvoice(ctx: Types.UserContext, req: Types.NewInvoiceRequest): Promise<Types.NewInvoiceResponse> { async NewInvoice(ctx: Types.UserContext, req: Types.NewInvoiceRequest): Promise<Types.NewInvoiceResponse> {
return this.applicationManager.AddAppUserInvoice(ctx.app_id, { return this.applicationManager.AddAppUserInvoice(ctx.app_id, {
http_callback_url: "", http_callback_url: "",
invoice_req: { ...req, zap: req.zap }, invoice_req: req,
payer_identifier: ctx.app_user_id, payer_identifier: ctx.app_user_id,
receiver_identifier: ctx.app_user_id receiver_identifier: ctx.app_user_id
}) })