Skip to content

Commit 96990c5

Browse files
committed
remove comments
1 parent 689b43f commit 96990c5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

config/deployments/production.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ noon.key_mode = "Live"
6969
nuvei.base_url = "https://ppp-test.nuvei.com/"
7070
opayo.base_url = "https://pi-live.sagepay.com/"
7171
opennode.base_url = "https://api.opennode.com"
72-
paybox.base_url = " https://ppps.paybox.com/PPPS.php"
72+
paybox.base_url = "https://ppps.paybox.com/PPPS.php"
7373
payeezy.base_url = "https://api.payeezy.com/"
7474
payme.base_url = "https://live.payme.io/"
7575
payone.base_url = "https://payment.payone.com/"

crates/connector_configs/src/connector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ pub struct ConnectorConfig {
175175
pub nmi: Option<ConnectorTomlConfig>,
176176
pub noon: Option<ConnectorTomlConfig>,
177177
pub nuvei: Option<ConnectorTomlConfig>,
178-
pub paybox: Option<ConnectorTomlConfig>, //added for future usage
178+
pub paybox: Option<ConnectorTomlConfig>,
179179
pub payme: Option<ConnectorTomlConfig>,
180180
#[cfg(feature = "payouts")]
181181
pub payone_payout: Option<ConnectorTomlConfig>,

crates/router/src/connector/paybox/transformers.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,6 @@ fn get_paybox_request_number() -> Result<String, Error> {
383383
.as_millis()
384384
.to_string();
385385
// unix time (in milliseconds) has 13 digits.if we consider 8 digits(the number digits to make day deterministic) there is no collision in the paybox_request_number as it will reset the paybox_request_number for each day and paybox accepting maximum length is 10 so we gonna take 9 (13-9)
386-
// Ok((time_stamp[4..]).to_string())
387386
let request_number = time_stamp
388387
.get(4..)
389388
.ok_or(errors::ConnectorError::ParsingFailed)?;

0 commit comments

Comments
 (0)