Update to 1.13.0 triggered by workflow_dispatch

This commit is contained in:
Template Bot
2024-06-24 12:53:11 +00:00
parent ce6c1e045d
commit a9c96aa201
14 changed files with 712 additions and 618 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ impl std::str::FromStr for Consensus {
} else if let Some(block_time) = s.strip_prefix("manual-seal-") {
Consensus::ManualSeal(block_time.parse().map_err(|_| "invalid block time")?)
} else {
return Err("incorrect consensus identifier".into())
return Err("incorrect consensus identifier".into());
})
}
}