-
Notifications
You must be signed in to change notification settings - Fork 49
To polkadot-stable2407
#1643
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
Merged
+7,051
−9,065
Merged
To polkadot-stable2407
#1643
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
3cdde97
Part.1
aurexav ad06f78
Companion of paritytech/polkadot-sdk#3052
aurexav ca15b06
Companion of paritytech/polkadot-sdk#3221
aurexav b6e7cd4
Companion of paritytech/polkadot-sdk#3002
aurexav 0702a44
Companion of paritytech/polkadot-sdk#1781
aurexav bc4d286
Companion of paritytech/polkadot-sdk#3505
aurexav 3ef19e6
Companion of paritytech/polkadot-sdk#3696
aurexav 66184fc
Companion of paritytech/polkadot-sdk#3607
aurexav df28cf1
Companion of paritytech/polkadot-sdk#3844
aurexav 66f3256
Companion of paritytech/polkadot-sdk#3854
aurexav ab6fdaa
Companion of paritytech/polkadot-sdk#3858
aurexav 84d1f43
Companion of paritytech/polkadot-sdk#2714
aurexav 153dcff
Fix nostd compile
aurexav 735f466
Companion of paritytech/polkadot-sdk#3660
aurexav b17ee23
Companion of paritytech/polkadot-sdk#4238
aurexav 5ab0f08
Companion of paritytech/polkadot-sdk#4177
aurexav 855735b
Companion of paritytech/polkadot-sdk#4156
aurexav be7fbda
Companion of paritytech/polkadot-sdk#4346
aurexav 658fdc5
Companion of paritytech/polkadot-sdk#4355
aurexav 3f2b3a6
Companion of paritytech/polkadot-sdk#3952
aurexav b0b9249
Companion of paritytech/polkadot-sdk#4410
aurexav 3b94aad
Companion of paritytech/polkadot-sdk#4634
aurexav b4ac1a3
Companion of paritytech/polkadot-sdk#4666
aurexav 33b3fee
Companion of paritytech/polkadot-sdk#3820
aurexav 22ed2e6
Companion of paritytech/polkadot-sdk#4831
aurexav e6e1e38
Companion of paritytech/polkadot-sdk#4730
aurexav 6cac042
Companion of paritytech/polkadot-sdk#4857
aurexav cf85cbc
Companion of paritytech/polkadot-sdk#4805
aurexav 5b3dcf3
Companion of paritytech/polkadot-sdk#3350
aurexav 9bccc9b
Add missing updates
aurexav fe387bf
Fix XCM related
jiguantong 54606af
Compile all runtime
aurexav 91a0ec4
Fixes
aurexav 64fa8f4
Fixes
aurexav 447b568
Companion of paritytech/polkadot-sdk#2944
aurexav 50e9d5c
Fix tests
aurexav 7726226
Format
aurexav 8e088c6
Fix unit test cases
boundless-forest 57f64f2
Format
aurexav cbb0388
Format
aurexav 04d2b1b
Add missing features
aurexav 47d8cb5
Fixes
aurexav a36af4a
Update Cargo.toml to include EVM patches and fix tracing test assertions
boundless-forest a3443f0
Remove unnecessary console.log from EVM tracing test
boundless-forest 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
Compile all runtime
- Loading branch information
commit 54606af373facd5e3f97a74ea6cde643c573f8ea
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| // This file is part of Darwinia. | ||
| // | ||
| // Copyright (C) Darwinia Network | ||
| // SPDX-License-Identifier: GPL-3.0 | ||
| // | ||
| // Darwinia is free software: you can redistribute it and/or modify | ||
| // it under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 3 of the License, or | ||
| // (at your option) any later version. | ||
| // | ||
| // Darwinia is distributed in the hope that it will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
| // | ||
| // You should have received a copy of the GNU General Public License | ||
| // along with Darwinia. If not, see <https://www.gnu.org/licenses/>. | ||
|
|
||
| // darwinia | ||
| use crate::*; | ||
|
|
||
| impl pallet_xcm_weight_trader::Config for Runtime { | ||
| type AccountIdToLocation = xcm_primitives::AccountIdToLocation<AccountId>; | ||
| type AddSupportedAssetOrigin = Root; | ||
| type AssetLocationFilter = frame_support::traits::Everything; | ||
| type AssetTransactor = AssetTransactors; | ||
| type Balance = Balance; | ||
| type EditSupportedAssetOrigin = Root; | ||
| type NativeLocation = SelfReserve; | ||
| #[cfg(feature = "runtime-benchmarks")] | ||
| type NotFilteredLocation = RelayLocation; | ||
| type PauseSupportedAssetOrigin = Root; | ||
| type RemoveSupportedAssetOrigin = Root; | ||
| type ResumeSupportedAssetOrigin = Root; | ||
| type RuntimeEvent = RuntimeEvent; | ||
| type WeightInfo = weights::pallet_xcm_weight_trader::WeightInfo<Runtime>; | ||
| type WeightToFee = <Runtime as pallet_transaction_payment::Config>::WeightToFee; | ||
| type XcmFeesAccount = XcmFeesAccount; | ||
| } |
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
Oops, something went wrong.
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.
Add migration.