add option to exclude reserve history in grid5k experiments

This commit is contained in:
Marco Boss 2022-03-10 10:26:44 +01:00
parent 9a3d993d07
commit 7a74cde9c7
No known key found for this signature in database
GPG Key ID: 89A3EC33C625C3DF

View File

@ -5423,6 +5423,7 @@ postgres_get_reserve_history (void *cls,
/** #TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE */ /** #TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE */
{ "reserves_in_get_transactions", { "reserves_in_get_transactions",
add_bank_to_exchange }, add_bank_to_exchange },
#ifndef GRID5K_MARCO_OPT
/** #TALER_EXCHANGEDB_RO_WITHDRAW_COIN */ /** #TALER_EXCHANGEDB_RO_WITHDRAW_COIN */
{ "get_reserves_out", { "get_reserves_out",
&add_withdraw_coin }, &add_withdraw_coin },
@ -5432,6 +5433,7 @@ postgres_get_reserve_history (void *cls,
/** #TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK */ /** #TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK */
{ "close_by_reserve", { "close_by_reserve",
&add_exchange_to_bank }, &add_exchange_to_bank },
#endif
/* List terminator */ /* List terminator */
{ NULL, { NULL,
NULL } NULL }