summaryrefslogtreecommitdiff
path: root/simulation/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'simulation/main.go')
-rw-r--r--simulation/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/simulation/main.go b/simulation/main.go
index 0a0b8b6..3eef8cd 100644
--- a/simulation/main.go
+++ b/simulation/main.go
@@ -5,14 +5,14 @@ import (
"os"
)
-const DISABLE_DELAYS = false
+const DISABLE_DELAYS = true
const C2EC_BASE_URL = "http://localhost:8082"
const C2EC_BANK_BASE_URL = C2EC_BASE_URL + "/c2ec"
const C2EC_BANK_CONFIG_URL = C2EC_BANK_BASE_URL + "/config"
const C2EC_BANK_WITHDRAWAL_STATUS_URL = C2EC_BANK_BASE_URL + "/withdrawal-operation/:wopid"
const C2EC_BANK_WITHDRAWAL_REGISTRATION_URL = C2EC_BANK_BASE_URL + "/withdrawal-operation/:wopid"
-const C2EC_BANK_WITHDRAWAL_PAYMENT_URL = C2EC_BANK_BASE_URL + "/withdrawal-operation/:wopid/payment"
+const C2EC_BANK_WITHDRAWAL_PAYMENT_URL = C2EC_BANK_BASE_URL + "/withdrawal-operation/:wopid/confirm"
// simulates the terminal talking to its backend system and executing the payment.
const PROVIDER_BACKEND_PAYMENT_DELAY_MS = 1000