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
In this section where fields of Context are explained, the description of bumps is outdated.
pubstructContext<'a,'b,'c,'info,T>{/// Currently executing program id.pubprogram_id:&'aPubkey,/// Deserialized accounts.pubaccounts:&'bmutT,/// Remaining accounts given but not deserialized or validated./// Be very careful when using this directly.pubremaining_accounts:&'c[AccountInfo<'info>],/// Bump seeds found during constraint validation. This is provided as a/// convenience so that handlers don't have to recalculate bump seeds or/// pass them in as arguments.pubbumps:BTreeMap<String,u8>,}
As of v0.29.0, bumps is no longer a BTreeMap, but a type safe struct (see #2542). The struct is currently defined here
The text was updated successfully, but these errors were encountered:
In this section where fields of
Context
are explained, the description ofbumps
is outdated.As of
v0.29.0
,bumps
is no longer aBTreeMap
, but a type safe struct (see #2542). The struct is currently defined hereThe text was updated successfully, but these errors were encountered: