-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solana ChainWriter #935
base: develop
Are you sure you want to change the base?
Solana ChainWriter #935
Conversation
8c8a858
to
845a9a6
Compare
845a9a6
to
13cf316
Compare
7332617
to
17379b5
Compare
17379b5
to
93cba43
Compare
99d006d
to
5c85cfa
Compare
5c85cfa
to
f6ae6d9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent job Silas! The structure looks really good and the complexity is well hidden behind the interface 🙌 . I feel I'm missing some context to review some details, will ask you some questions on Slack
#[account( | ||
init, | ||
payer = admin, | ||
space = size_of::<LookupTableDataAccount>() + 8, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just curious, what is +8 here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That accounts for the 8-byte discriminator I believe
}, | ||
}, | ||
} | ||
fmt.Println(chainWriterConfig) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keeping this print?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just did this so the compiler wouldn't complain about the unused variable
f6ae6d9
to
1d34387
Compare
Quality Gate failedFailed conditions |
Description
Related Tickets:
NONEVM-753
NONEVM-963
NONEVM-964
Requires Dependencies
Resolves Dependencies