Use a MuSig signature to publish validator set key pairs to Serai

The processor/coordinator flow still has to be rewritten.
This commit is contained in:
Luke Parker
2023-05-13 02:02:47 -04:00
parent 84c2d73093
commit f069567f12
12 changed files with 226 additions and 130 deletions

View File

@@ -174,7 +174,7 @@ impl Contains<RuntimeCall> for CallFilter {
}
if let RuntimeCall::ValidatorSets(call) = call {
return matches!(call, validator_sets::Call::vote { .. });
return matches!(call, validator_sets::Call::set_keys { .. });
}
false