taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 52c3343e4060fc68378cecc2bda6c0916a43acc9
parent 7e0538f5b04c4f37e2fc44516de4335700f4b9b3
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu, 26 Apr 2018 10:45:22 +0200

closing fees were missing..

Diffstat:
Mconfig/generate-config | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/config/generate-config b/config/generate-config @@ -172,6 +172,16 @@ def config(currency, envname, exchange_pub, standalone): cfg_put("fees-x-taler-bank", "wire-fee-2024", currency + ":" + "0.07") cfg_put("fees-x-taler-bank", "wire-fee-2025", currency + ":" + "0.08") + cfg_put("fees-x-taler-bank", "closing-fee-2018", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2019", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2020", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2021", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2022", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2023", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2024", currency + ":" + "0.01") + cfg_put("fees-x-taler-bank", "closing-fee-2025", currency + ":" + "0.01") + + cfg_put("exchange-wire-test", "wire-fee-2017", currency + ":" + "0.01") cfg_put("exchange-wire-test", "wire-fee-2018", currency + ":" + "0.02") cfg_put("exchange-wire-test", "wire-fee-2019", currency + ":" + "0.03")