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) )
@@ -44,7 +43,6 @@ mod handlers {
44
43
45
44
/// Register Signatures
46
45
pub async fn register_signatures (
47
- origin_tag : Option < String > ,
48
46
message : RegisterSignatureMessage ,
49
47
logger : Logger ,
50
48
certifier_service : Arc < dyn CertifierService > ,
@@ -122,7 +120,6 @@ mod handlers {
122
120
mod tests {
123
121
use anyhow:: anyhow;
124
122
use mithril_common:: entities:: ClientError ;
125
- use mithril_common:: MITHRIL_ORIGIN_TAG_HEADER ;
126
123
use std:: sync:: Arc ;
127
124
use warp:: http:: { Method , StatusCode } ;
128
125
use warp:: test:: request;
You can’t perform that action at this time.
0 commit comments