Matthias Debernardini

Results 38 comments of Matthias Debernardini

I am trying to do something similar as well. I have a test file with ignores and I would like to strip out this statement void test_longest_known_isogram(void) { TEST_IGNORE(); TEST_ASSERT_TRUE(is_isogram("efe"));...

I am also trying to get clightning running locally for some tests and I am not sure how to debug this compilation error. Any tips? I am using nigiri to...

I'm having problems figuring out how to comment this /* TCP A TCP B */ /* 1. CLOSED LISTEN */ /* 2. SYN-SENT --> --> SYN-RECEIVED */ /* 3. ESTABLISHED...

This would be in the client lib that would need replacing right?

https://github.com/fedimint/fedimint/blob/e0b4606372c1a03a6240274dcd67722cc5a2fa6f/client/client-lib/src/lib.rs#L97 here right?

I'm using VScode `find in files`. What I will do is tag all the places I can find with a FIXME then move from module to module. Indeed there are...

Also, we want Url's right? I figure this way it can accept "galacticfederation.com" eventually or something like that, instead of handling raw machine addresses and have DNS sort it out...

I just see it as a more flexible, since it affords us an extra level of indirection to adjust. Hopefully in the future we can have many more protocols to...

https://crates.io/crates/url This is what is used in the servo crate and has 67m downloads, so I think we should use this one (unless there is a better option).

other option would be to use the Url type from the reqwest crate, I think I will do this since its up to date and this way we don't have...