Victor
Victor
What is the status of utp development for rust libp2p? Afaik, there is no implementation, and I don't see any PRs that have started implementation. If no effort has been...
I believe there are couple issues with the secure example for 4-initialization attack. 1. The `discriminator` [field](https://github.com/coral-xyz/sealevel-attacks/blob/master/programs/4-initialization/secure/src/lib.rs#L36) in the `User` struct is a misleading field name. It is not used...
In the ui tests, for example for recommended: https://github.com/project-serum/sealevel-attacks/blob/master/programs/1-account-data-matching/recommended/src/lib.rs, it refers to `ProgramResult` but doesn't import it. Need to import it somehow like: `use anchor_lang::solana_program::entrypoint::ProgramResult;`. This goes for all ui...
I'd like to possibly contribute to this project - is it still actively maintained?
I'd like to possibly contribute to this project - is it still actively maintained?
I'd like to possibly contribute to this project - is it still actively maintained?
I'm working through 05-led-roulette and I am at the "debug it" step. I connected to the remote GDB server and set a breakpoint at main. However, when I type "continue"...
I have a few general questions and questions about the design rationale behind the protocol, and why certain things are done the way they are: 1. In state/fast sync, it...
Quick and somewhat-dirty implementation of lint 6. Tests pass, but may need further work/clean-up when encountering >2 duplicate accounts.
Short and sweet lint that addresses this issue by flagging any calls to `bincode::deserialize()` (resolving to a type implementing Sysvar trait) and advising user to use `from_account_info()` instead (the way...