diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-07-22 19:17:45 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-07-22 19:17:45 +0200 |
commit | c257559c7773b214aa4930ac861846105ee2f469 (patch) | |
tree | 0104e73cb4c2916b6fb692c8d3e53d84c0e5704a /src/backenddb | |
parent | a271c5bc992e52d719540c5b72d6c665034211c9 (diff) |
-simplify
Diffstat (limited to 'src/backenddb')
-rw-r--r-- | src/backenddb/plugin_merchantdb_postgres.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index 6970233c..d079bd8a 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -2147,12 +2147,12 @@ lookup_refunds_cb (void *cls, lrc->qs = GNUNET_DB_STATUS_HARD_ERROR; return; } - lrc->qs = i + 1; lrc->rc (lrc->rc_cls, &coin_pub, &refund_amount); GNUNET_PQ_cleanup_result (rs); /* technically useless here */ } + lrc->qs = num_results; } |