-
Notifications
You must be signed in to change notification settings - Fork 8
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
added solana-ibc impl folder #14
Conversation
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.
The code is in serious need for documentation and we’ll need to change it so it uses sealable-trie but let’s the ball rolling and this merged.
.gitignore
Outdated
|
||
.anchor | ||
.DS_Store | ||
target | ||
**/*.rs.bk | ||
node_modules | ||
test-ledger |
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.
.anchor | |
.DS_Store | |
target | |
**/*.rs.bk | |
node_modules | |
test-ledger | |
.anchor | |
.DS_Store | |
*.rs.bk | |
node_modules | |
test-ledger |
**/
doesn’t do anything useful since patterns in .gitignore aren’t anchored at root (unless prefixed with /
). And I think we don’t need separate target
since with workspace we will only have one target directory at repository’s root.
I’m not sure about node_modules
but if you’re adding it as is, could you also remove existing /node_modules/
? Sorting the lines wouln’t hurt either.
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.
sure sure, makes sense.
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.
once we configure the root to be the workspace for anchor, we wouldnt be needing the target folder. But i have added target
such that it ignores any target it comes across.
No description provided.