Andre-Philippe Paquet
Andre-Philippe Paquet
The cell manager maintain the cell status on each node by exchanging messages between nodes. It's goal: - Maintain nodes reachability status - Maintain cell metadata and mutation of it
Right now, pending store is kept in memory. In order to increase resilience of it in case of crash, we need persist it. The ideal persistence would be a WAL...
Allow embedding frames into frames. Instead of having a seperate signature, we could just have a SignedFrame wrap a NonSignedFrame. This would allow preventing having an Option of the signature...
Right now, transport only support message passing. In order to optimize chain bootstrapping, we need to be able to support streaming. The way it could be implemented is to add...
This is needed to sign frames, blocks, messages, etc. Framing support signature, but it's only hashing the message using SHA3 256 right now. Possible signature source: * SECP251K1 to sign...
Notes - Create gold standard (@appaquet's data?) - Evaluate gold standard with metric (MAP?) - Think about how we could tweak / learn weights (evolution algo?)
TODO - [ ] electron-webpack doesn't support webpack 5. See https://github.com/electron-userland/electron-webpack/issues/408
I recently moved my workspace to a new mac with a M1 processor, and we have a few integration tests that require creating Tantivy indices on disk. This ended up...