Skip to content

Commit 4ac92b0

Browse files
authored
Update substrate to polkadot-v0.9.30 (#880)
* Update substrate to polkadot-v0.9.30 - Update substrate to commit 1b1a5e1 - Upgrade rust-toolchain to rustc 1.64.0-nightly (7fe022f5a 2022-07-24) - Make benchmark command as an optional feature - Fix benchmark template and script - Upgrade web3 to v1.8 and update ts-tests/package-lock.json Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Remove useless dep Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix ident Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Install protoc * Update some deps * Fix test * update prometheus to v0.13.3 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Use evm 0.36.0 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * update lru 0.8.0 ==> 0.8.1 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * update scale-codec and scale-info Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix fmt Signed-off-by: koushiro <koushiro.cqx@gmail.com> Signed-off-by: koushiro <koushiro.cqx@gmail.com>
1 parent b0b78f0 commit 4ac92b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+3994
-2571
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions-rs/toolchain@v1
1717
with:
1818
profile: minimal
19-
toolchain: nightly-2022-05-02
19+
toolchain: nightly-2022-07-25
2020
target: wasm32-unknown-unknown
2121
override: true
2222
components: rust-docs

.github/workflows/rust.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ jobs:
2020
uses: actions-rs/toolchain@v1
2121
with:
2222
profile: minimal
23-
toolchain: nightly-2022-05-02
23+
toolchain: nightly-2022-07-25
2424
target: wasm32-unknown-unknown
2525
override: true
26+
- name: Install protoc
27+
uses: arduino/setup-protoc@v1
2628
- name: Run tests
2729
run: cargo test --locked --verbose --all
2830
- name: Ensure benchmarking compiles
@@ -37,9 +39,11 @@ jobs:
3739
uses: actions-rs/toolchain@v1
3840
with:
3941
profile: minimal
40-
toolchain: nightly-2022-05-02
42+
toolchain: nightly-2022-07-25
4143
target: wasm32-unknown-unknown
4244
override: true
45+
- name: Install protoc
46+
uses: arduino/setup-protoc@v1
4347
- name: Build manual seal client
4448
run: |
4549
cd template/node
@@ -64,10 +68,12 @@ jobs:
6468
uses: actions-rs/toolchain@v1
6569
with:
6670
profile: minimal
67-
toolchain: nightly-2022-05-02
71+
toolchain: nightly-2022-07-25
6872
target: wasm32-unknown-unknown
6973
override: true
7074
components: rustfmt, clippy
75+
- name: Install protoc
76+
uses: arduino/setup-protoc@v1
7177
- name: Check Cargo.toml Format
7278
run: |
7379
if taplo --version &> /dev/null; then

0 commit comments

Comments
 (0)