You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(solana): split versioned-v0 test into static-verified and ALT-opaque cases
The old test_solana_sign_versioned_v0_opaque built a v0 tx whose
instruction only touched static accounts (no address table lookups) and
asserted it must be rejected without AdvancedMode. That's the pre-clearsign
assumption; firmware now treats static-only v0 messages as fully verifiable
(same as legacy) and clear-signs them directly. Split into:
- test_solana_sign_versioned_v0_static_verified: static-only v0 clear-signs
without AdvancedMode.
- test_solana_sign_versioned_v0_opaque: a v0 tx whose instruction resolves
an account via the address lookup table (genuinely unverifiable) still
requires AdvancedMode.
0 commit comments