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
{{ message }}
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Transaction.keys contains information that is also serialized into Transaction.userdata. Instead, change Transaction.keys from Vec<Pubkey> to Vec<u16>, where u16 is a byte offset to the first instance of that Pubkey in userdata.
Also, consider making that Vec<(u16, Option<u16>)> to optionally pair that Pubkey with a Signature.