diff options
| author | Christian Grothoff <christian@grothoff.org> | 2016-04-21 20:00:40 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2016-04-21 20:00:40 +0200 | 
| commit | 21188ca703d05211e8d4d3ae9bd22500f53915ac (patch) | |
| tree | a0dbae4cd9a23ef810fa38af66a6359bd8da3ebc /src/wire | |
| parent | 77e9e3a7f65db0940a0797d9b12ba883bbdae48e (diff) | |
| parent | 1d43437991e52629a0dcc1ce97bb99b791ca6927 (diff) | |
Merge branch 'master' of ssh://taler.net:/var/git/exchange
Diffstat (limited to 'src/wire')
| -rw-r--r-- | src/wire/plugin_wire_sepa.c | 4 | ||||
| -rw-r--r-- | src/wire/plugin_wire_template.c | 4 | ||||
| -rw-r--r-- | src/wire/plugin_wire_test.c | 6 | ||||
| -rw-r--r-- | src/wire/test_wire_plugin.conf | 2 | 
4 files changed, 8 insertions, 8 deletions
diff --git a/src/wire/plugin_wire_sepa.c b/src/wire/plugin_wire_sepa.c index 6f01167d..7a3d0d17 100644 --- a/src/wire/plugin_wire_sepa.c +++ b/src/wire/plugin_wire_sepa.c @@ -737,12 +737,12 @@ libtaler_plugin_wire_sepa_init (void *cls)    {      if (GNUNET_OK !=          GNUNET_CONFIGURATION_get_value_string (cfg, -                                               "exchange", +                                               "taler",                                                 "CURRENCY",                                                 &sc->currency))      {        GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, -                                 "exchange", +                                 "taler",                                   "CURRENCY");        GNUNET_free (sc);        return NULL; diff --git a/src/wire/plugin_wire_template.c b/src/wire/plugin_wire_template.c index 46908c29..826d9318 100644 --- a/src/wire/plugin_wire_template.c +++ b/src/wire/plugin_wire_template.c @@ -242,12 +242,12 @@ libtaler_plugin_wire_template_init (void *cls)    }    if (GNUNET_OK !=        GNUNET_CONFIGURATION_get_value_string (cfg, -                                             "exchange", +                                             "taler",                                               "CURRENCY",                                               &tc->currency))    {      GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, -                               "exchange", +                               "taler",                                 "CURRENCY");      GNUNET_free (tc->bank_uri);      GNUNET_free (tc); diff --git a/src/wire/plugin_wire_test.c b/src/wire/plugin_wire_test.c index c11adbae..55d69817 100644 --- a/src/wire/plugin_wire_test.c +++ b/src/wire/plugin_wire_test.c @@ -224,7 +224,7 @@ test_amount_round (void *cls,    if (NULL == tc->currency)    {      GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, -                               "exchange", +                               "taler",                                 "CURRENCY");      return GNUNET_SYSERR; /* not configured with currency */    } @@ -820,12 +820,12 @@ libtaler_plugin_wire_test_init (void *cls)      }      if (GNUNET_OK !=          GNUNET_CONFIGURATION_get_value_string (cfg, -                                               "exchange", +                                               "taler",                                                 "CURRENCY",                                                 &tc->currency))      {        GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, -                                 "exchange", +                                 "taler",                                   "CURRENCY");        GNUNET_free (tc->bank_uri);        GNUNET_free (tc); diff --git a/src/wire/test_wire_plugin.conf b/src/wire/test_wire_plugin.conf index ece81695..b9aebdba 100644 --- a/src/wire/test_wire_plugin.conf +++ b/src/wire/test_wire_plugin.conf @@ -17,5 +17,5 @@ SEPA_RESPONSE_FILE = test_wire_plugin_sepa.json  # is avaialble).  BANK_URI = http://localhost/ -[exchange] +[taler]  CURRENCY = "EUR"  | 
