Correct a couple years of accumulated typos

This commit is contained in:
Luke Parker
2023-12-17 02:06:51 -05:00
parent 9c3329abeb
commit c2fffb9887
40 changed files with 63 additions and 63 deletions

View File

@@ -115,7 +115,7 @@ pub(crate) async fn key_gen(coordinators: &mut [Coordinator]) -> KeyPair {
.await;
// Confirm the key pair
// TODO: Beter document network_latest_finalized_block's genesis state, and error if a set claims
// TODO: Better document network_latest_finalized_block's genesis state, and error if a set claims
// [0; 32] was finalized
let context = SubstrateContext {
serai_time: SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs(),

View File

@@ -272,7 +272,7 @@ fn send_test() {
for (i, coordinator) in coordinators.iter_mut().enumerate() {
if !participating.contains(&i) {
coordinator.publish_transacton(&ops, &tx).await;
// Tell them of it as a completion of the relevant signing nodess
// Tell them of it as a completion of the relevant signing nodes
coordinator
.send_message(messages::sign::CoordinatorMessage::Completed {
session: Session(0),
@@ -297,8 +297,8 @@ fn send_test() {
}
// TODO: Test the Eventuality from the blockchain, instead of from the coordinator
// TODO: Test what happenns when Completed is sent with a non-existent TX ID
// TODO: Test what happenns when Completed is sent with a non-completing TX ID
// TODO: Test what happens when Completed is sent with a non-existent TX ID
// TODO: Test what happens when Completed is sent with a non-completing TX ID
});
}
}