taler-deployment

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

commit def2651beae9400d525eaec484384265a37cc648
parent fd73de5cab154e462405c9f850ab0ad65ae12251
Author: MS <ms@taler.net>
Date:   Wed,  8 Jun 2022 10:58:01 +0200

fix currency mismatch

Diffstat:
Mbin/taler-local | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/taler-local b/bin/taler-local @@ -529,7 +529,7 @@ CUSTOMER_BANK_ACCOUNT = "sandbox-account-customer" CUSTOMER_BANK_PASSWORD = "secret" # needed along preparation and later to withdraw via # the Access API. -CURRENCY = "EUR" +CURRENCY = "CHF" @cli.command() @click.option( @@ -1456,7 +1456,7 @@ def prepare(x_forwarded_host, x_forwarded_proto, postgres_db_name): # Make the 'default' demobank at Sandbox. (No signup bonus) Command([ f"{TALER_PREFIX}/bin/libeufin-sandbox", - "config", "--currency", "CHF", "--without-signup-bonus", "default"], + "config", "--currency", CURRENCY, "--with-signup-bonus", "default"], env={ "PATH": os.environ["PATH"], "LIBEUFIN_SANDBOX_DB_CONNECTION": f"jdbc:sqlite:{SANDBOX_DB_FILE}"