immutable config

move node id and public key init to routing table
This commit is contained in:
Christien Rioux 2025-09-09 19:29:44 -05:00
parent bad7f3b89e
commit 8b5f77f264
39 changed files with 313 additions and 574 deletions

View file

@ -16,8 +16,7 @@ Future<void> testGetCryptoSystems() async {
const CryptoKind invalidCryptoKind = cryptoKindNONE + 1;
Future<void> testGetCryptoSystemInvalid() async {
await expectLater(
() async => Veilid.instance.getCryptoSystem(invalidCryptoKind),
await expectLater(() => Veilid.instance.getCryptoSystem(invalidCryptoKind),
throwsA(isA<VeilidAPIException>()));
}