commit 5b0a5e422e5f1f41f0efc855d522039cc7e6e17d
parent d7e6da28f7240454e2744babab09fc3dcafd328b
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 13 Jun 2018 20:11:30 +0200
Wire transfer delay.
Putting a "zero secs" wire transfer delay
in order to get the exchange issue the payout
immediately, and so have the payment generator
executing a successful /track/transaction.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/generate-config b/config/generate-config
@@ -101,7 +101,7 @@ def config(currency, envname, exchange_pub, standalone):
cfg_put("merchant", "wireformat", "test")
cfg_put("merchant", "serve", "unix")
cfg_put("merchant", "unixpath", "$HOME/sockets/merchant.http")
- cfg_put("merchant", "wire_transfer_delay", "1 m")
+ cfg_put("merchant", "wire_transfer_delay", "0 s")
cfg_put("merchant", "default_max_wire_fee", currency + ":" + "0.01")
cfg_put("merchant", "default_max_deposit_fee", currency + ":" + "0.05")