-add FIXMEs

This commit is contained in:
Christian Grothoff 2021-12-05 19:23:16 +01:00
parent bb6c11ad9e
commit 6ba9f934c4
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 7 additions and 3 deletions

View File

@ -525,6 +525,7 @@ CREATE TABLE IF NOT EXISTS recoup
,timestamp INT8 NOT NULL
,reserve_out_serial_id INT8 NOT NULL REFERENCES reserves_out (reserve_out_serial_id) ON DELETE CASCADE
);
-- FIXME: explain table better!
COMMENT ON TABLE recoup
IS 'Information about recoups that were executed';
COMMENT ON COLUMN recoup.known_coin_id
@ -552,6 +553,7 @@ CREATE TABLE IF NOT EXISTS recoup_refresh
,timestamp INT8 NOT NULL
,rrc_serial INT8 NOT NULL UNIQUE REFERENCES refresh_revealed_coins (rrc_serial) ON DELETE CASCADE
);
-- FIXME: explain table better!
COMMENT ON COLUMN recoup_refresh.known_coin_id
IS 'Do not CASCADE ON DROP on the known_coin_id, as we may keep the coin alive!';
COMMENT ON COLUMN recoup_refresh.rrc_serial

View File

@ -831,7 +831,8 @@ TALER_EXCHANGE_verify_coin_history (
return GNUNET_SYSERR;
}
*h_denom_pub = rr.h_denom_pub;
add = GNUNET_YES;
add = GNUNET_YES; // FIXME: one of these should be a "NO"
// => need better tests!!!
}
else if (0 == strcasecmp (type,
"OLD-COIN-RECOUP"))
@ -878,7 +879,7 @@ TALER_EXCHANGE_verify_coin_history (
GNUNET_break_op (0);
return GNUNET_SYSERR;
}
add = GNUNET_YES;
add = GNUNET_YES; // FIXME: one of these should be a "NO"
}
else
{
@ -911,7 +912,8 @@ TALER_EXCHANGE_verify_coin_history (
However, for the implementation, we first *add* up all of
these negative amounts, as we might get refunds before
deposits from a semi-evil exchange. Then, at the end, we do
the subtraction by calculating "total = total - rtotal" */GNUNET_assert (GNUNET_NO == add);
the subtraction by calculating "total = total - rtotal" */
GNUNET_assert (GNUNET_NO == add);
if (0 >
TALER_amount_add (&rtotal,
&rtotal,