diff --git a/stacks-signer/src/runloop.rs b/stacks-signer/src/runloop.rs index ad25b4fc4..d9cc6743d 100644 --- a/stacks-signer/src/runloop.rs +++ b/stacks-signer/src/runloop.rs @@ -412,7 +412,7 @@ impl, T: StacksMessageCodec + Clone + Send + Debug> if self.state == State::NoRegisteredSigners { let next_reward_cycle = current_reward_cycle.saturating_add(1); if let Some(event) = event { - info!("Signer is not registered for the current reward cycle ({current_reward_cycle}) or next reward cycle ({next_reward_cycle}). Waiting for confirmed registration..."); + info!("Signer is not registered for the current reward cycle ({current_reward_cycle}). Reward set is not yet determined or signer is not registered for the upcoming reward cycle ({next_reward_cycle})."); warn!("Ignoring event: {event:?}"); } return None;