diff --git a/src/modules/IPG/gateways/sep.ts b/src/modules/IPG/gateways/sep.ts index 9efe18c..6acbec1 100644 --- a/src/modules/IPG/gateways/sep.ts +++ b/src/modules/IPG/gateways/sep.ts @@ -95,7 +95,7 @@ class SepGateway implements IGateway { let amountValid = true; if (sepResponse.TransactionDetail && sepResponse.TransactionDetail.OrginalAmount) { // According to SEP docs, OrginalAmount should match the expected amount - amountValid = sepResponse.TransactionDetail.OrginalAmount === data.amount; + amountValid = sepResponse.TransactionDetail.OrginalAmount === data.amount*10; if (!amountValid) { this.logger.warn(`SEP amount mismatch: expected ${data.amount}, got ${sepResponse.TransactionDetail.OrginalAmount}`); }