diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-05 22:00:31 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-05 22:00:31 +0200 |
commit | d37e16a76c32e83407f5ea71e572cc5469a58924 (patch) | |
tree | 0bb4849ae69ccbc94ae7424014ac9abe0d8d16d5 /src/lib/merchant_api_get_transfers.c | |
parent | f82923526d6f7f688677b15f416a3b41f9feff2b (diff) |
fix #6408 also in merchant: in principle only allow rounded times over JSON
Diffstat (limited to 'src/lib/merchant_api_get_transfers.c')
-rw-r--r-- | src/lib/merchant_api_get_transfers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/merchant_api_get_transfers.c b/src/lib/merchant_api_get_transfers.c index 5d08dba1..859d97be 100644 --- a/src/lib/merchant_api_get_transfers.c +++ b/src/lib/merchant_api_get_transfers.c @@ -144,8 +144,8 @@ handle_transfers_get_finished (void *cls, &td->exchange_url), GNUNET_JSON_spec_uint64 ("transfer_serial_id", &td->credit_serial), - GNUNET_JSON_spec_absolute_time ("execution_time", - &td->execution_time), + TALER_JSON_spec_absolute_time ("execution_time", + &td->execution_time), GNUNET_JSON_spec_bool ("verified", &td->verified), GNUNET_JSON_spec_bool ("confirmed", |