@@ -158,7 +158,7 @@ impl StateMachine {
158
158
}
159
159
SignerState :: Unregistered { epoch } => {
160
160
if let Some ( new_epoch) = self . has_epoch_changed ( * epoch) . await ? {
161
- info ! ( "→ Epoch has changed, transiting to UNREGISTERED " ) ;
161
+ info ! ( "→ Epoch has changed, transiting to Unregistered " ) ;
162
162
* state = self
163
163
. transition_from_unregistered_to_unregistered ( new_epoch)
164
164
. await ?;
@@ -174,7 +174,7 @@ impl StateMachine {
174
174
info ! ( "→ Epoch settings found" ) ;
175
175
if epoch_settings. epoch >= * epoch {
176
176
info ! ( "new Epoch found" ) ;
177
- info ! ( " ⋅ transiting to REGISTERED " ) ;
177
+ info ! ( " ⋅ transiting to Registered " ) ;
178
178
* state = self
179
179
. transition_from_unregistered_to_one_of_registered_states (
180
180
epoch_settings,
@@ -193,7 +193,7 @@ impl StateMachine {
193
193
}
194
194
SignerState :: RegisteredNotAbleToSign { epoch } => {
195
195
if let Some ( new_epoch) = self . has_epoch_changed ( * epoch) . await ? {
196
- info ! ( " → new Epoch detected, transiting to UNREGISTERED " ) ;
196
+ info ! ( " → new Epoch detected, transiting to Unregistered " ) ;
197
197
* state = self
198
198
. transition_from_registered_not_able_to_sign_to_unregistered ( new_epoch)
199
199
. await ?;
@@ -207,7 +207,7 @@ impl StateMachine {
207
207
last_signed_entity_type,
208
208
} => match self . has_epoch_changed ( * epoch) . await ? {
209
209
Some ( new_epoch) => {
210
- info ! ( "→ Epoch has changed, transiting to UNREGISTERED " ) ;
210
+ info ! ( "→ Epoch has changed, transiting to Unregistered " ) ;
211
211
* state = self
212
212
. transition_from_ready_to_sign_to_unregistered ( new_epoch)
213
213
. await ?;
@@ -269,7 +269,7 @@ impl StateMachine {
269
269
}
270
270
Some ( certificate) if can_sign_signed_entity_type ( self , & certificate) . await => {
271
271
info ! (
272
- " ⋅ Epoch has NOT changed we can sign this certificate, transiting to READY_TO_SIGN " ;
272
+ " ⋅ Epoch has NOT changed we can sign this certificate, transiting to ReadyToSign " ;
273
273
"pending_certificate" => ?certificate,
274
274
) ;
275
275
ReadyToSignTransition :: ToReadyToSign ( certificate)
0 commit comments