Remove invalid TODOs from processor signers

This commit is contained in:
Luke Parker
2023-11-09 03:46:47 -05:00
parent 978134a9d1
commit 43ae6794db
2 changed files with 0 additions and 12 deletions

View File

@@ -428,10 +428,6 @@ impl<N: Network, D: Db> Signer<N, D> {
Ok(machine) => machine,
};
// TODO: Use a seeded RNG here so we don't produce distinct messages with the same intent
// This is also needed so we don't preprocess, send preprocess, reboot before ack'ing the
// message, send distinct preprocess, and then attempt a signing session premised on the
// former with the latter
let (machine, preprocess) = machine.preprocess(&mut OsRng);
machines.push(machine);
serialized_preprocesses.push(preprocess.serialize());