Skip to content

Commit d445ce7

Browse files
committed
fix: handle merge conflicts with main branch
1 parent 314103c commit d445ce7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mithril-signer/src/runtime/runner.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ use tokio::sync::RwLockReadGuard;
66

77
use mithril_common::crypto_helper::{KESPeriod, OpCert, ProtocolOpCert, SerDeShelleyFileFormat};
88
use mithril_common::entities::{
9-
CertificatePending, Epoch, EpochSettings, PartyId, ProtocolMessage, SignedEntityType, Signer,
10-
SignerWithStake, SingleSignatures, TimePoint,
9+
CertificatePending, Epoch, PartyId, ProtocolMessage, SignedEntityType, Signer, SignerWithStake,
10+
SingleSignatures, TimePoint,
1111
};
1212
use mithril_common::StdResult;
1313
use mithril_persistence::store::StakeStorer;

mithril-signer/src/services/epoch_service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ pub mod mock {
230230
impl EpochService for EpochServiceImpl {
231231
/// Inform the service a new epoch has been detected, telling it to update its
232232
/// internal state for the new epoch.
233-
fn inform_epoch_settings(&mut self, epoch_settings: EpochSettings) -> StdResult<()>;
233+
fn inform_epoch_settings(&mut self, epoch_settings: SignerEpochSettings) -> StdResult<()>;
234234

235235
/// Get the current epoch for which the data stored in this service are computed.
236236
fn epoch_of_current_data(&self) -> StdResult<Epoch>;

0 commit comments

Comments
 (0)