The Config class in coordinator/mod.rs method new() includes the following line signer_public_keys: HashMap<u32, Point>,
However, later the in net.rs the object public keys is different:
This inconsistency is not caught in tests (for example, of the Packet method validate() which would catch this error) but this could lead to problems for typical use cases.
The Config class in coordinator/mod.rs method new() includes the following line signer_public_keys: HashMap<u32, Point>, However, later the in net.rs the object public keys is different:
This inconsistency is not caught in tests (for example, of the Packet method validate() which would catch this error) but this could lead to problems for typical use cases.