-
Notifications
You must be signed in to change notification settings - Fork 185
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
Updated all pallets documentation #484
Open
herou
wants to merge
64
commits into
JoshOrndorff:master
Choose a base branch
from
herou:elio-updated-documentation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
64 commits
Select commit
Hold shift + click to select a range
d0a226b
m1 fix for v.3.0.0
herou 5ce858b
disable all local dependecies
herou e8b2cda
add pallet-template
herou 4b74371
minor fix
herou bab2d29
node run with pallet-template v2
herou 8f72831
add simple event pallet
herou d24a889
fix tests for simple_event
herou 7cf7a32
delete pallet-template
herou d57cd60
add simple_map pallet v2
herou c5d37d7
add hello_substrate_v2 pallet
herou a6591ef
add double_map pallet v2
herou 26b22b3
add basic_token v2 pallet
herou c590cc3
add default_instances v2 pallet
herou a0823dd
add fixed_point pallet v2
herou e80eaf9
add generic_event pallet v2
herou 45530d7
add last_caller pallet v2
herou b708f8c
add lockable-currency pallet v2
herou 2650808
add randomness pallet v2
herou e023d4c
quick fix
herou e15b2c4
add reservable-currency pallet v2
herou 30e74cf
add vec-set pallet v2
herou 1d5a593
add simple-map v2
herou a95420f
enable map-set v2
herou 0521943
add storage_cache pallet v2
herou 3cd3aad
add struct-storage pallet v2
herou d390be4
add ringbuffer-queue pallet v2
herou 0ceb1ae
add check-membership pallet v2
herou 6128ae1
add compound-interest pallet v2
herou fe6a9c1
add ringbuffer-queue pallet v2
herou 9f31743
add charity pallet v2 (tests failing)
herou c038e63
add compounding-interest pallet v2
herou 82dd765
call as static method so I can explicitly specify the type param
JoshOrndorff 3a5c882
Merge pull request #6 from JoshOrndorff/joshy-fix-charity-test
herou 0c89d1a
add constant-config v2 pallet
herou 26cebf0
convert all pallets to frame v2 (simple-crowdfund tests are failing)
herou f891ddc
add simple-crowdfund pallet v2
herou 7fb2034
minor changes
herou 1f5a97e
run cargo fmt command for all pallets
herou 071cf7d
add #![allow(clippy::unused_unit)] in each pallet
herou d039cf1
git clippy fix
herou c818a11
fix clippy for check-membership pallet
herou fe392a0
fix clippy errors
herou afa70f6
fix clippy needless_borrow
herou 2bc9f5e
fix clippy neddless_borrow again
herou 81badbe
Fix broken links
640341d
Updating events documentation according to substrate v2
herou 57815fb
Text alignment
herou ef29054
Update basic-token.md documentation
herou e6b4025
Updated cache.md doc
herou 4a0a0da
Update charity.md doc
herou 6c6079a
Update constants.md documentation
herou 3ea81f2
Update crowdfund.md documentation
herou ded6939
Update currency-imbalances.md documentation
herou a297e89
Update map-set.md documentation
herou 34189b9
Update double.md documentation
herou b4b250e
Update vec-set.md documentation
herou d1bac01
Update randomness.md documentation
herou e501142
Update using-events.md documentation
herou 372ed7e
update storage-maps.md
herou 17ac6b2
Update fixed-point.md document
herou 47bc9a8
Update currency.md
herou ace25d6
Update runtime-printing.md documentation
herou 4f1440c
Update structs.md documentation
herou 02598ab
Update pallet-coupling.md documentation
herou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,4 @@ members = [ | |
"consensus/sha3pow", | ||
"traits/account-set", | ||
] | ||
librocksdb-sys = "6.17.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
Why do we need this? If it is in our code, we should remove the borrow. If this code comes from a Substrate macro, I'm fine with overriding adding this for now. But we should make an upstream PR to make the macro better. Here's an example of one I've done in the past paritytech/substrate#9053