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
Compiling token-omnibus v0.1.0 (/Users/aeyakovenko/token-omnibus/programs/token-omnibus)
error[E0425]: cannot find value `system_program` in this scope
--> programs/token-omnibus/src/lib.rs:20:10
|
20 | #[derive(Accounts)]
| ^^^^^^^^ not found in this scope
should be:
the init constraint requires the system_program to exist in the account validation struct. add the following to your struct: pub system_program: Program <'info, System>
The text was updated successfully, but these errors were encountered:
currently:
should be:
The text was updated successfully, but these errors were encountered: