Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Put integration tests behind feature flag #515
Put integration tests behind feature flag #515
Changes from 22 commits
03f5f74
45b84eb
fbdfdf6
c9ad19b
8e5f38b
3087ada
057f075
e596c68
c192f17
680bc05
3a1a692
2461c3b
3d9b9ab
06c587c
1e0522d
e73c763
e309328
77818e0
8c1c681
cd91831
bc0f719
bce0562
a989404
755a871
1890dc1
5e49b4e
e857e7e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
I don't really understand what this line does? (also doesn't look like there is a balances pallet in the fake metadata?)
(alas I couldn't comment on the line itself; sorry!)
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.
Have updated the comment. If we call
metadata_hash
with an argument ofpallets: ["System"]
it would produce a hash that is cached internally. Therefore, if we call the same method again, but with different arguments (iepallets: ["Balances"]
), it would fetch the previously cached value 😄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.
Thanks, that is clearer! :)