acheron
acheron
Blocked until https://github.com/coral-xyz/anchor/pull/2795 because of the MSRV error https://github.com/solana-labs/solana/issues/33504.
Superseded by https://github.com/coral-xyz/anchor/pull/2876.
Yes, will do. Does the accounts not deserialize e.g. when using `TokenAccount` or is it the exported `spl_token_2022` module that doesn't have the functionality to deserialize the new extensions? If...
FYI, there is a problem with the `1.18` release which I believe is currently being worked on. The upgrade is blocked until that problem has some sort of a resolution.
The failing tests in CI have been working with all prior versions so I think something is off with program memory in `1.18`. I'm afraid it could be something like...
Superseded by https://github.com/coral-xyz/anchor/pull/2867.
Yes, it will be removed in https://github.com/coral-xyz/anchor/pull/2708
The error is from Solana's `platform-tools` which Anchor uses to build programs so I don't think we can solve it from our side. It might also be an issue with...
The majority of dependencies of `anchor-lang` comes from `solana-program` and `borsh` crates, both of them seem to be imported from the `error.rs` file so I'm not sure about the benefits...
Yeah, I generally agree with overriding the default `Result` by importing the prelude can be annoying but given the fix for when you want to return a different error type...