diff options
Diffstat (limited to 'src/exchange/taler-exchange-httpd_management_wire_disable.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd_management_wire_disable.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_management_wire_disable.c b/src/exchange/taler-exchange-httpd_management_wire_disable.c index 3b760ea9f..17bd7273f 100644 --- a/src/exchange/taler-exchange-httpd_management_wire_disable.c +++ b/src/exchange/taler-exchange-httpd_management_wire_disable.c | |||
@@ -65,7 +65,6 @@ struct DelWireContext | |||
65 | * | 65 | * |
66 | * @param cls closure with a `struct DelWireContext` | 66 | * @param cls closure with a `struct DelWireContext` |
67 | * @param connection MHD request which triggered the transaction | 67 | * @param connection MHD request which triggered the transaction |
68 | * @param session database session to use | ||
69 | * @param[out] mhd_ret set to MHD response status for @a connection, | 68 | * @param[out] mhd_ret set to MHD response status for @a connection, |
70 | * if transaction failed (!) | 69 | * if transaction failed (!) |
71 | * @return transaction status | 70 | * @return transaction status |
@@ -73,7 +72,6 @@ struct DelWireContext | |||
73 | static enum GNUNET_DB_QueryStatus | 72 | static enum GNUNET_DB_QueryStatus |
74 | del_wire (void *cls, | 73 | del_wire (void *cls, |
75 | struct MHD_Connection *connection, | 74 | struct MHD_Connection *connection, |
76 | struct TALER_EXCHANGEDB_Session *session, | ||
77 | MHD_RESULT *mhd_ret) | 75 | MHD_RESULT *mhd_ret) |
78 | { | 76 | { |
79 | struct DelWireContext *awc = cls; | 77 | struct DelWireContext *awc = cls; |
@@ -81,7 +79,6 @@ del_wire (void *cls, | |||
81 | enum GNUNET_DB_QueryStatus qs; | 79 | enum GNUNET_DB_QueryStatus qs; |
82 | 80 | ||
83 | qs = TEH_plugin->lookup_wire_timestamp (TEH_plugin->cls, | 81 | qs = TEH_plugin->lookup_wire_timestamp (TEH_plugin->cls, |
84 | session, | ||
85 | awc->payto_uri, | 82 | awc->payto_uri, |
86 | &last_date); | 83 | &last_date); |
87 | if (qs < 0) | 84 | if (qs < 0) |
@@ -114,7 +111,6 @@ del_wire (void *cls, | |||
114 | return GNUNET_DB_STATUS_HARD_ERROR; | 111 | return GNUNET_DB_STATUS_HARD_ERROR; |
115 | } | 112 | } |
116 | qs = TEH_plugin->update_wire (TEH_plugin->cls, | 113 | qs = TEH_plugin->update_wire (TEH_plugin->cls, |
117 | session, | ||
118 | awc->payto_uri, | 114 | awc->payto_uri, |
119 | awc->validity_end, | 115 | awc->validity_end, |
120 | false); | 116 | false); |