Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes default impls on TieredAccountMeta (solana-labs#32464)
#### Problem `TieredAccountMeta` has default impls on many of its methods. But I don't think it should, because these defaults are not actually useful defaults (i.e. they are `unimplemented!()`). We're only going to have a small number of structs that'll implement this trait, and each struct should be responsible for picking the correct impl for each method. Currently, `HotAccountMeta` is the only one, and it implements every method. #### Summary of Changes Remove default impls on TieredAccountMeta
- Loading branch information