You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the method validateInvoice there is a typo error in the line 343, the file is validation.ts, but I'm thinking that method is not used anywhere.
In other case the line should be:
if (!("MIN_PAYMENT_AMT" in process.env)) throw Error("MIN_PAYMENT_AMT not found, please check .env file");
instead of:
if (!("MAIN_PAYMENT_AMT" in process.env)) throw Error("MIN_PAYMENT_AMT not found, please check .env file");
And there is some console.debug that weren't removed in the lines 392-394, and I'm not totally sure if the line 391 is doing the right validation, the result of a new Date is an Object
The text was updated successfully, but these errors were encountered:
Describe the bug
In the method validateInvoice there is a typo error in the line 343, the file is validation.ts, but I'm thinking that method is not used anywhere.
In other case the line should be:
if (!("MIN_PAYMENT_AMT" in process.env)) throw Error("MIN_PAYMENT_AMT not found, please check .env file");
instead of:
if (!("MAIN_PAYMENT_AMT" in process.env)) throw Error("MIN_PAYMENT_AMT not found, please check .env file");
And there is some console.debug that weren't removed in the lines 392-394, and I'm not totally sure if the line 391 is doing the right validation, the result of a new Date is an Object
The text was updated successfully, but these errors were encountered: