-reduce default fakebank memory allocation (see #7156)

This commit is contained in:
Christian Grothoff 2022-02-19 21:21:24 +01:00
parent 917b2f373e
commit bccdf7e452
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 3 additions and 3 deletions

View File

@ -23,11 +23,11 @@
#include "bank_api_common.h"
int
enum GNUNET_GenericReturnValue
TALER_BANK_setup_auth_ (CURL *easy,
const struct TALER_BANK_AuthenticationData *auth)
{
int ret;
enum GNUNET_GenericReturnValue ret;
ret = GNUNET_OK;
switch (auth->method)

View File

@ -101,7 +101,7 @@ run (void *cls,
const struct GNUNET_CONFIGURATION_Handle *cfg)
{
unsigned long long port = 8082;
unsigned long long ram = 1024 * 1024 * 128; /* 128 M entries */
unsigned long long ram = 1024 * 128; /* 128 k entries */
char *currency_string;
(void) cls;