changed SAVING to SAVINGS as transaction type for IMPS

This commit is contained in:
2025-09-16 12:26:41 +05:30
parent 00a839a6d8
commit 752b725fa6
3 changed files with 3 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ async function send(
amount,
ifscCode,
beneficiaryName,
beneficiaryAcctType = 'SAVING',
beneficiaryAcctType = 'SAVINGS',
remarks = ''
) {
try {

View File

@@ -19,8 +19,8 @@ const impsRoute = async (req, res) => {
amount,
ifscCode,
beneficiaryName,
'SAVING',
'check'
'SAVINGS',
''
);
if (result.startsWith('Message produced successfully')) {

View File

@@ -26,7 +26,6 @@ async function validateOutsideBank(accountNo, ifscCode, name) {
remittername: name,
});
if (response.data) {
console.log(response.data);
return uuid;
}
} catch (error) {