This repository was archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Merged
chore: v0.9.38 #194
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
9450283
upgrade v.0.9.37 - build
enthusiastmartin f09f458
revert nft changes
enthusiastmartin 3b3e30d
update inspect adfadpter
enthusiastmartin 8aef29e
update registry tests
enthusiastmartin 8aef2a7
update collator-rewards tests
enthusiastmartin 6f4233c
fix `InspectEnumerable` trait
Roznovjak f957e0a
update currencies tests
enthusiastmartin 3c50e53
update duster tests
enthusiastmartin 7f02f26
update ema oracle tests
enthusiastmartin f985255
update faucet tests
enthusiastmartin 7c487df
update lm tests
enthusiastmartin faea3f5
update price-oracle tests
enthusiastmartin 87b9079
Merge pull request #173 from galacticcouncil/fix/nft_trait
enthusiastmartin d43298b
fix multi payment tests to reflect changes in 37
enthusiastmartin 6affba6
fix stableswap tests to reflect changes in 37
enthusiastmartin 3e0a6fb
fix tx pause tests to reflect changes in 37
enthusiastmartin 03aab95
fix route-executor tests to reflect changes in 37
enthusiastmartin e411cec
Reformat
enthusiastmartin 934224b
Reformat
enthusiastmartin 30b953d
bump versions
enthusiastmartin 9e44b8d
add protobuf to gh workflow
enthusiastmartin 3f3de45
add protobuf to gh workflow
enthusiastmartin 31200a4
set default storage version
Roznovjak dd88646
Merge branch 'main' into v0.9.37
enthusiastmartin 108d74f
math update
enthusiastmartin 3c34413
update otc pallet to 37
enthusiastmartin 2eeb98d
v0.9.38
enthusiastmartin a655b19
Merge branch 'main' into v0.9.37
Roznovjak b2ca40c
Merge pull request #191 from galacticcouncil/duster/storage_version
Roznovjak ec42a11
Merge branch 'main' into v0.9.37
Roznovjak 6195cb1
fix renamed `EnsureOrigin` method in benchmarks
Roznovjak 952c55e
satisfy clippy
Roznovjak 474064e
Merge branch 'main' into v0.9.37
Roznovjak d048e91
Merge branch 'v0.9.37' into v0.9.38
Roznovjak b100a9a
use hydradx_math merge commit
Roznovjak c81eeb7
Merge branch 'main' into v0.9.38
Roznovjak 6c5dbe0
Merge branch 'main' into v0.9.38
Roznovjak 8611693
add missing impl to `MultiInspectAdapter`
Roznovjak 2a316a6
remove empty file
Roznovjak 6649bf4
fix typo
Roznovjak 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
fix
InspectEnumerable trait
- Loading branch information
commit 6f4233c804da6395c042016824eec3c326b4d8e8
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
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 was Origin renamed to RuntimeOrigin and Event to RuntimeEvent?
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.
IMHO to differentiate outer enums that are created by
construct_runtimemacro from nested enums from pallets.You can see it in this example:
RuntimeCall::Balances(pallet_balances::Call::transfer { dest: ALICE, value: 10 })