File tree 1 file changed +0
-3
lines changed
mithril-aggregator/src/http_server/routes
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ fn register_signatures(
14
14
) -> impl Filter < Extract = ( impl warp:: Reply , ) , Error = warp:: Rejection > + Clone {
15
15
warp:: path!( "register-signatures" )
16
16
. and ( warp:: post ( ) )
17
- . and ( middlewares:: with_origin_tag ( router_state) )
18
17
. and ( warp:: body:: json ( ) )
19
18
. and ( middlewares:: with_logger ( router_state) )
20
19
. and ( middlewares:: with_certifier_service ( router_state) )
@@ -42,7 +41,6 @@ mod handlers {
42
41
43
42
/// Register Signatures
44
43
pub async fn register_signatures (
45
- origin_tag : Option < String > ,
46
44
message : RegisterSignatureMessage ,
47
45
logger : Logger ,
48
46
certifier_service : Arc < dyn CertifierService > ,
@@ -120,7 +118,6 @@ mod handlers {
120
118
mod tests {
121
119
use anyhow:: anyhow;
122
120
use mithril_common:: entities:: ClientError ;
123
- use mithril_common:: MITHRIL_ORIGIN_TAG_HEADER ;
124
121
use std:: sync:: Arc ;
125
122
use warp:: http:: { Method , StatusCode } ;
126
123
use warp:: test:: request;
You can’t perform that action at this time.
0 commit comments