taler-deployment

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

commit 479455508a41a75f4fd8d4137b9021d86cc17083
parent 673517d4367054b6793a65de676b8f7cf943676f
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed,  7 Sep 2022 10:12:38 +0200

-add global fees

Diffstat:
Mbin/taler-gv | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/bin/taler-gv b/bin/taler-gv @@ -1376,6 +1376,26 @@ def prepare(postgres_db_name): ], custom_name="set-wire-fee" ).run() + print_nn("Setting global fees for the next 5 years...") + for year in range(YEAR, YEAR+5): + Command( + [ + f"{TALER_PREFIX}/bin/taler-exchange-offline", + "-c", CFG_OUTDIR / "taler.conf", + "global-fee", + str(year), + CURRENCY + ":0.00", + CURRENCY + ":0.00", + CURRENCY + ":0.00", + CURRENCY + ":0.00", + "3000s", + "30000s", + "300000s", + "0", + "upload" + ], + custom_name="set-wire-fee" + ).run() print(" OK") print_nn("Reset and init auditor DB..") Command([