diff options
author | Marco Boss <bossm8@bfh.ch> | 2022-03-10 10:26:44 +0100 |
---|---|---|
committer | Marco Boss <bossm8@bfh.ch> | 2022-03-10 10:26:44 +0100 |
commit | 7a74cde9c7bd4ddf709b832e750d7f57845e0515 (patch) | |
tree | ec4c8578dbd93f904b9534021febc043d0aa2d10 /src/exchangedb | |
parent | 9a3d993d071c4733f1243ef2ab8185210a907b75 (diff) |
add option to exclude reserve history in grid5k experiments
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index 09fa05620..b5fca072c 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -5423,6 +5423,7 @@ postgres_get_reserve_history (void *cls, /** #TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE */ { "reserves_in_get_transactions", add_bank_to_exchange }, +#ifndef GRID5K_MARCO_OPT /** #TALER_EXCHANGEDB_RO_WITHDRAW_COIN */ { "get_reserves_out", &add_withdraw_coin }, @@ -5432,6 +5433,7 @@ postgres_get_reserve_history (void *cls, /** #TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK */ { "close_by_reserve", &add_exchange_to_bank }, +#endif /* List terminator */ { NULL, NULL } |