diff options
author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-30 11:38:13 +0200 |
---|---|---|
committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-30 11:38:13 +0200 |
commit | 4d287dc42ccd226b110cc3419738687e68052b8a (patch) | |
tree | c7468dfada535831b127cf5c57172663805eaa7d | |
parent | 7e2ae3517934ef7825d1fb5d323ecede6b7885f9 (diff) |
fixing time logging
m--------- | examples/blog/web-common | 0 | ||||
m--------- | examples/shop/web-common | 0 | ||||
-rw-r--r-- | src/backend/taler-merchant-httpd_pay.c | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/web-common b/examples/blog/web-common -Subproject 026ef2476676ef00b6c2a0cec135a8e64024ee5 +Subproject 80f1e2708dbe4b19349244b611a6167b4b7a98c diff --git a/examples/shop/web-common b/examples/shop/web-common -Subproject 026ef2476676ef00b6c2a0cec135a8e64024ee5 +Subproject 80f1e2708dbe4b19349244b611a6167b4b7a98c diff --git a/src/backend/taler-merchant-httpd_pay.c b/src/backend/taler-merchant-httpd_pay.c index 201a356e..70d6284e 100644 --- a/src/backend/taler-merchant-httpd_pay.c +++ b/src/backend/taler-merchant-httpd_pay.c @@ -662,8 +662,8 @@ process_pay_with_exchange (void *cls, GNUNET_assert (NULL != pc->mi->j_wire); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timing for this payment, wire_deadline: %llu, refund_deadline: %llu", - pc->wire_transfer_deadline, - pc->refund_deadline); + pc->wire_transfer_deadline.abs_value_us, + pc->refund_deadline.abs_value_us); dc->dh = TALER_EXCHANGE_deposit (mh, &dc->amount_with_fee, pc->wire_transfer_deadline, |