This repository was archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Revamp all #206
Merged
Merged
Revamp all #206
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
158d19a
Refactor file structure
aurexav 7f88c4a
Refactor CI
aurexav b3772be
Merge & fix
aurexav dd5e8c6
Merge commit '32a0e6cd61bcf6a2fc8db41badec08e556727030' into xavier/l…
aurexav 184f940
Remove unused constants
aurexav aba0f13
Remove unused primitives
aurexav e216de7
Anchor `57e3486d9c7bb4deaef33cf9ba2da083b4e40314`
aurexav c10ffd3
Update `bp-runtime`
aurexav 96c98b4
Use latest toolchain
aurexav 3634bbf
Update `bp-test-utils`
aurexav 3d519d4
Update `bp-header-chain`
aurexav 6183e02
Update `bp-polkadot-core`
aurexav bb7f31b
Downgrade versions
aurexav 53e8f5c
Format
aurexav 4c43af8
Update `bp-message-dispatch`
aurexav 5926437
Format
aurexav 7c3a1fb
Update `pallet-bridge-grandpa`
aurexav a0e2ad7
Update `bp-parachains`
aurexav f74fa85
Update `bp-messages`
aurexav 67fcb0b
Format
aurexav c2bafd9
Update `pallet-bridge-dispatch`
aurexav fce569d
Update `pallet-bridge-parachains`
aurexav d3b2de9
Update `bridge-runtime-common` part.1
aurexav 1677fee
Update `instant_payments`
aurexav d1592ac
Update `weight_ext`
aurexav 2b8928a
Update `outbound_lane`
aurexav 8494708
Update `inbound_lane`
aurexav a2be056
Update `pallet-messages`
aurexav caa30a7
Fixes
aurexav 8017850
Update `bridge-runtime-common` part.1
aurexav c266655
Update `bridge-runtime-common` part.2
aurexav 16b3ec8
Format
aurexav 0bad9e9
Update `bridge-runtime-common` part.3
aurexav 96d268b
Fix tests
aurexav 6c44656
Delete `increase_message_fee` (#207)
boundless-forest 963a1c2
Format
aurexav 6251e4b
Sync toolchain version
aurexav c92e6a9
Remove useless code
aurexav dd2d238
Remove unused code
aurexav f78a4b6
Remove unused code
aurexav 8c4e16f
Clean core primitives
aurexav e4b6ec5
Format
aurexav 4b9630e
Add `pallets.rs`
aurexav 43911fe
Message pallet name for pangolin parachain alpha
jiguantong 07e1cf0
Clean
aurexav 7c4b030
Migrate pallet operation mode
aurexav 01625fd
Migrate best finalized
aurexav a3d19b5
Handle all migrations
aurexav e168d55
Remove unused code
aurexav a4de895
License
aurexav 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
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,21 @@ | ||
| root = true | ||
|
|
||
| [*] | ||
| indent_style=tab | ||
| charset=utf-8 | ||
| end_of_line=lf | ||
| indent_size=tab | ||
| indent_style=tab | ||
| insert_final_newline=true | ||
| max_line_length=100 | ||
| tab_width=4 | ||
| end_of_line=lf | ||
| charset=utf-8 | ||
| trim_trailing_whitespace=true | ||
| max_line_length=100 | ||
| insert_final_newline=true | ||
|
|
||
| [*.{yml,md,yaml,sh}] | ||
| [*.py] | ||
| charset=utf-8 | ||
| indent_size=4 | ||
| indent_style=space | ||
|
|
||
| [*.{sh,yml,yaml}] | ||
| indent_size=2 | ||
| indent_style=space | ||
| tab_width=8 | ||
| end_of_line=lf | ||
|
|
||
| [*.md] | ||
| max_line_length=80 |
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,25 @@ | ||
| name: Checks | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main, darwinia-v*, polkadot-v*] | ||
| pull_request: | ||
| branches: [main, darwinia-v*, polkadot-v*] | ||
|
|
||
| env: | ||
| RUST_TOOLCHAIN: nightly | ||
|
|
||
| jobs: | ||
| basic-checks: | ||
| name: Basic checks | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Install Rust ${{ env.RUST_TOOLCHAIN }} toolchain | ||
| uses: actions-rs/toolchain@v1 | ||
| with: | ||
| toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
| default: true | ||
| - name: Fetch latest code | ||
| uses: actions/checkout@v3 | ||
| - name: Cargo test | ||
| run: cargo test --all --locked |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,15 @@ | ||
| **/target/ | ||
| **/.env | ||
| **/.env2 | ||
| **/rust-toolchain | ||
| hfuzz_target | ||
| hfuzz_workspace | ||
| **/Cargo.lock | ||
|
|
||
| **/*.rs.bk | ||
|
|
||
| *.o | ||
| *.so | ||
| *.rlib | ||
| *.dll | ||
| .gdb_history | ||
|
|
||
| *.exe | ||
|
|
||
| # System | ||
| .DS_Store | ||
|
|
||
| .cargo | ||
| # Integrated Development Environment | ||
| .idea | ||
| .vscode | ||
| *.iml | ||
| *.swp | ||
| *.swo | ||
|
|
||
| # Package Manager | ||
| ## cargo | ||
| /target | ||
| ## npm | ||
| node_modules | ||
|
|
||
| # Test data | ||
|
aurexav marked this conversation as resolved.
|
||
| test-data | ||
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.
Uh oh!
There was an error while loading. Please reload this page.