Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Revamp all #206

Merged
merged 50 commits into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
158d19a
Refactor file structure
aurexav Sep 28, 2022
7f88c4a
Refactor CI
aurexav Sep 28, 2022
b3772be
Merge & fix
aurexav Sep 28, 2022
dd5e8c6
Merge commit '32a0e6cd61bcf6a2fc8db41badec08e556727030' into xavier/l…
aurexav Oct 8, 2022
184f940
Remove unused constants
aurexav Oct 8, 2022
aba0f13
Remove unused primitives
aurexav Oct 9, 2022
e216de7
Anchor `57e3486d9c7bb4deaef33cf9ba2da083b4e40314`
aurexav Oct 9, 2022
c10ffd3
Update `bp-runtime`
aurexav Oct 9, 2022
96c98b4
Use latest toolchain
aurexav Oct 9, 2022
3634bbf
Update `bp-test-utils`
aurexav Oct 9, 2022
3d519d4
Update `bp-header-chain`
aurexav Oct 9, 2022
6183e02
Update `bp-polkadot-core`
aurexav Oct 9, 2022
bb7f31b
Downgrade versions
aurexav Oct 9, 2022
53e8f5c
Format
aurexav Oct 9, 2022
4c43af8
Update `bp-message-dispatch`
aurexav Oct 9, 2022
5926437
Format
aurexav Oct 9, 2022
7c3a1fb
Update `pallet-bridge-grandpa`
aurexav Oct 9, 2022
a0e2ad7
Update `bp-parachains`
aurexav Oct 9, 2022
f74fa85
Update `bp-messages`
aurexav Oct 9, 2022
67fcb0b
Format
aurexav Oct 10, 2022
c2bafd9
Update `pallet-bridge-dispatch`
aurexav Oct 10, 2022
fce569d
Update `pallet-bridge-parachains`
aurexav Oct 10, 2022
d3b2de9
Update `bridge-runtime-common` part.1
aurexav Oct 10, 2022
1677fee
Update `instant_payments`
aurexav Oct 12, 2022
d1592ac
Update `weight_ext`
aurexav Oct 12, 2022
2b8928a
Update `outbound_lane`
aurexav Oct 12, 2022
8494708
Update `inbound_lane`
aurexav Oct 12, 2022
a2be056
Update `pallet-messages`
aurexav Oct 12, 2022
caa30a7
Fixes
aurexav Oct 12, 2022
8017850
Update `bridge-runtime-common` part.1
aurexav Oct 13, 2022
c266655
Update `bridge-runtime-common` part.2
aurexav Oct 13, 2022
16b3ec8
Format
aurexav Oct 13, 2022
0bad9e9
Update `bridge-runtime-common` part.3
aurexav Oct 13, 2022
96d268b
Fix tests
aurexav Oct 13, 2022
6c44656
Delete `increase_message_fee` (#207)
boundless-forest Oct 13, 2022
963a1c2
Format
aurexav Oct 13, 2022
6251e4b
Sync toolchain version
aurexav Oct 13, 2022
c92e6a9
Remove useless code
aurexav Oct 17, 2022
dd2d238
Remove unused code
aurexav Oct 17, 2022
f78a4b6
Remove unused code
aurexav Oct 18, 2022
8c4e16f
Clean core primitives
aurexav Oct 18, 2022
e4b6ec5
Format
aurexav Oct 18, 2022
4b9630e
Add `pallets.rs`
aurexav Oct 18, 2022
43911fe
Message pallet name for pangolin parachain alpha
jiguantong Oct 18, 2022
07e1cf0
Clean
aurexav Oct 18, 2022
7c4b030
Migrate pallet operation mode
aurexav Oct 18, 2022
01625fd
Migrate best finalized
aurexav Oct 18, 2022
a3d19b5
Handle all migrations
aurexav Oct 18, 2022
e168d55
Remove unused code
aurexav Oct 19, 2022
a4de895
License
aurexav Oct 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
239 changes: 0 additions & 239 deletions .config/lingua.dic

This file was deleted.

13 changes: 0 additions & 13 deletions .config/spellcheck.toml

This file was deleted.

22 changes: 12 additions & 10 deletions .editorconfig
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
25 changes: 25 additions & 0 deletions .github/workflows/checks.yml
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
37 changes: 0 additions & 37 deletions .github/workflows/ci.yml

This file was deleted.

33 changes: 11 additions & 22 deletions .gitignore
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
aurexav marked this conversation as resolved.
Show resolved Hide resolved
node_modules

# Test data
aurexav marked this conversation as resolved.
Show resolved Hide resolved
test-data
Loading