We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a971450 commit 5f9238bCopy full SHA for 5f9238b
stacks-signer/src/v0/signer_state.rs
@@ -322,12 +322,7 @@ impl LocalStateMachine {
322
client.get_current_and_last_sortition()?;
323
let Some(last_sortition) = last_sortition
324
.and_then(|val| SortitionData::try_from(val).ok())
325
- .map(|data| {
326
- SortitionState::new(
327
- version,
328
- data,
329
- )
330
- })
+ .map(|data| SortitionState::new(version, data))
331
else {
332
warn!("Signer State: Current miner timed out due to inactivity, but could not find a valid prior miner. Allowing current miner to continue");
333
return Ok(());
0 commit comments