taler-deployment

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

commit 1ec40cdf0514e9d7b068b53c26100df0bba3c591
parent 07ea1b0726cc9239b4612c3c5a35d54a3105b63f
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sat, 19 Nov 2016 19:57:08 +0100

fix confgen

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

diff --git a/config/generate-config b/config/generate-config @@ -31,14 +31,14 @@ def coin(currency, f_refund="0.10", rsa_keysize="2048"): sec = "coin_"+currency+"_"+name - cfg_put(sec, "value", ""+currency+":"+value) + cfg_put(sec, "value", currency+":"+value) cfg_put(sec, "duration_overlap", d_overlap) cfg_put(sec, "duration_withdraw", d_withdraw) cfg_put(sec, "duration_spend", d_spend) cfg_put(sec, "duration_legal", d_legal) - cfg_put(sec, "fee_withdraw", f_withdraw) - cfg_put(sec, "fee_refresh", f_refresh) - cfg_put(sec, "fee_refund", f_refund) + cfg_put(sec, "fee_withdraw", currency+":"+f_withdraw) + cfg_put(sec, "fee_refresh", currency+":"+f_refresh) + cfg_put(sec, "fee_refund", currency+":"+f_refund) cfg_put(sec, "rsa_keysize", rsa_keysize) def config(currency, envname, exchange_pub):