Skip to content
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

Update substrate to 0.9.17 #591

Merged
merged 27 commits into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5243c8f
updated package versions
alistair-singh Mar 8, 2022
1828fe9
updated to 0.9.17
alistair-singh Mar 8, 2022
db29ca8
removed DigestItem generic
alistair-singh Mar 9, 2022
7d682b0
added `without_storage_info` attributes to pallets
alistair-singh Mar 15, 2022
cf020b4
made account principal optional
alistair-singh Mar 15, 2022
189597e
added state_version to runtime versions
alistair-singh Mar 15, 2022
b81035d
general runtime fixes
alistair-singh Mar 15, 2022
47ab86f
more runtime fixes
alistair-singh Mar 15, 2022
ddd080a
add xcm config
alistair-singh Mar 15, 2022
a0da8bc
fixed benchmarks
alistair-singh Mar 15, 2022
7034701
added PalletsOrigin for utility pallet config
alistair-singh Mar 15, 2022
9c2e6fb
added Header parameter
alistair-singh Mar 15, 2022
f8185b0
service fixes
alistair-singh Mar 15, 2022
c3f4994
cargo check now passes
alistair-singh Mar 15, 2022
05862cb
fixed runtime benchmarks
alistair-singh Mar 15, 2022
d10b68d
tests passing
alistair-singh Mar 15, 2022
0a3fcf0
add non zero sender
alistair-singh Mar 15, 2022
eabb1a5
add missing benchmarks
alistair-singh Mar 15, 2022
0fc625f
fixed merge conflict
alistair-singh Mar 15, 2022
b0ac896
updated polkadot api js libs
alistair-singh Mar 15, 2022
d9cc004
downgrade edition to 2018
alistair-singh Mar 15, 2022
0f4d088
update docs
alistair-singh Mar 15, 2022
c87b055
updated toolchain
alistair-singh Mar 15, 2022
045dff8
upgrade back to edition 2021
alistair-singh Mar 15, 2022
c721181
rustfmt
alistair-singh Mar 15, 2022
041e740
more benchmark fixes
alistair-singh Mar 16, 2022
b720804
only allow unpaid from parent or parents executive
alistair-singh Mar 16, 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
8 changes: 4 additions & 4 deletions .github/workflows/parachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-07-01
toolchain: stable-2022-01-20
target: wasm32-unknown-unknown
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
toolchain: nightly-2021-07-01
toolchain: stable-2022-01-20
args: >-
--manifest-path parachain/Cargo.toml
--workspace
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-07-01
toolchain: stable-2022-01-20
target: wasm32-unknown-unknown
- uses: actions-rs/install@v0.1.2
with:
Expand All @@ -93,4 +93,4 @@ jobs:
--features runtime-benchmarks
--avoid-cfg-tarpaulin
--coveralls ${{ secrets.COVERALLS_REPO_TOKEN }}
toolchain: nightly-2021-07-01
toolchain: stable-2022-01-20
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-03-24
toolchain: stable-2022-01-20
target: wasm32-unknown-unknown
- name: build
uses: actions-rs/cargo@v1
Expand Down
2 changes: 1 addition & 1 deletion ethereum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/test-helpers": "https://github.com/Snowfork/openzeppelin-test-helpers.git#3f9c4b8",
"@polkadot/api": "^6.10.3",
"@polkadot/api": "^7.7.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
Expand Down
Loading