@@ -12,7 +12,7 @@ use mithril_common::{
1212 StdResult ,
1313 entities:: { ProtocolParameters , SignedEntityTypeDiscriminants } ,
1414} ;
15- use mithril_ticker:: { MithrilTickerService , TickerService } ;
15+ use mithril_ticker:: TickerService ;
1616
1717/// A fake [MithrilNetworkConfigurationProvider] that return [MithrilNetworkConfiguration]
1818pub struct FakeMithrilNetworkConfigurationProvider {
@@ -25,7 +25,7 @@ pub struct FakeMithrilNetworkConfigurationProvider {
2525 /// The configuration for each signed entity type
2626 pub signed_entity_types_config : SignedEntityTypeConfiguration ,
2727
28- ticker_service : Arc < MithrilTickerService > ,
28+ ticker_service : Arc < dyn TickerService > ,
2929}
3030
3131impl FakeMithrilNetworkConfigurationProvider {
@@ -34,7 +34,7 @@ impl FakeMithrilNetworkConfigurationProvider {
3434 signer_registration_protocol_parameters : ProtocolParameters ,
3535 available_signed_entity_types : BTreeSet < SignedEntityTypeDiscriminants > ,
3636 signed_entity_types_config : SignedEntityTypeConfiguration ,
37- ticker_service : Arc < MithrilTickerService > ,
37+ ticker_service : Arc < dyn TickerService > ,
3838 ) -> Self {
3939 Self {
4040 signer_registration_protocol_parameters,
0 commit comments