Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

To polkadot-v0.9.33 and some other changes #171

Merged
merged 42 commits into from
Jan 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
bef7024
Anchor polkadot-v0.9.33
jiguantong Jan 3, 2023
c8c92a1
Companion for paritytech/cumulus#1685
jiguantong Jan 3, 2023
c84aad4
Companion for paritytech/cumulus#1585
jiguantong Jan 3, 2023
b02c851
Companion for paritytech/cumulus#1745
jiguantong Jan 3, 2023
341a001
Companion for paritytech/cumulus#1759
jiguantong Jan 3, 2023
3c10385
Companion for paritytech/cumulus#1782
jiguantong Jan 3, 2023
8ba0195
Companion for paritytech/cumulus#1793
jiguantong Jan 3, 2023
4f61104
Companion for paritytech/cumulus#1808
jiguantong Jan 3, 2023
7015136
Temp use prepare branch of messages-substrate
Jan 9, 2023
12b7e4a
Use darwinia fork frontier
Jan 9, 2023
7feed4a
Use correct moonbeam substrate commit
Jan 9, 2023
8a986c9
Correct bp-darwinia-core std
Jan 10, 2023
53b1915
Use prepare moonbeam v0.9.33
Jan 10, 2023
24eb417
Update ethereum to 0.14.0
Jan 10, 2023
89a4aac
Companion for paritytech/substrate#11649, paritytech/polkadot#5729 de…
Jan 10, 2023
650e8e4
Companion for paritytech/substrate#11649, paritytech/polkadot#5729 sc…
Jan 10, 2023
bc8d5ec
Companion for paritytech/substrate#11649, paritytech/polkadot#5729 pr…
Jan 10, 2023
ac6464c
Companion for paritytech/substrate#12109
Jan 10, 2023
ba7470e
Type create origin
Jan 10, 2023
710a439
Format
Jan 10, 2023
21c50da
Fix type CreateOrigin
Jan 10, 2023
7854698
Format
Jan 10, 2023
791555b
Companion for paritytech/frontier#935
Jan 10, 2023
eb99990
Fix compile
Jan 10, 2023
d45d201
Fix service
Jan 11, 2023
d00ef46
Format
Jan 11, 2023
a2aa89a
`Frontier` upgrade (#196)
boundless-forest Jan 11, 2023
2d0bff3
Merge branch 'main' into bear-replace-dispatch
boundless-forest Jan 12, 2023
a3ecf36
Update prepare branch
Jan 12, 2023
650df5f
Merge branch 'main' into guantong/prepare-polkadot-v0.9.33
Jan 12, 2023
87fef95
Fix mock
Jan 12, 2023
e7af287
Add pallet-evm-precompile-dispatch/std
Jan 12, 2023
351236b
Merge branch 'main' into guantong/prepare-polkadot-v0.9.33
Jan 13, 2023
a91769d
Format
Jan 13, 2023
39296e0
Format
Jan 13, 2023
e22c541
Correct version after merge
Jan 13, 2023
b786302
Fix review
Jan 13, 2023
553ef8a
Fix review
Jan 13, 2023
87fbe5e
Fix CI test
boundless-forest Jan 13, 2023
998278a
Merge branch 'main' into guantong/prepare-polkadot-v0.9.33
Jan 13, 2023
37f3cda
Merge branch 'main' into guantong/prepare-polkadot-v0.9.33
Jan 13, 2023
a30bd12
Fix compile after merge
Jan 15, 2023
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
Prev Previous commit
Next Next commit
Fix compile
  • Loading branch information
Guantong committed Jan 10, 2023
commit eb9999061a801c05b2ee8af1614adbff10f0dd94
2 changes: 1 addition & 1 deletion node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub struct Cli {
#[arg(raw = true)]
pub relay_chain_args: Vec<String>,

#[arg(flatten)]
#[command(flatten)]
pub eth_args: EthArgs,
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/crab/src/pallets/assets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub enum AssetIds {
}

frame_support::parameter_types! {
const Signers: Vec<AccountId> = vec![ROOT];
pub Signers: Vec<AccountId> = vec![ROOT];
boundless-forest marked this conversation as resolved.
Show resolved Hide resolved
}

impl pallet_assets::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/pallets/assets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub enum AssetIds {
}

frame_support::parameter_types! {
const Signers: Vec<AccountId> = vec![ROOT];
pub Signers: Vec<AccountId> = vec![ROOT];
boundless-forest marked this conversation as resolved.
Show resolved Hide resolved
}

impl pallet_assets::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangolin/src/pallets/assets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub enum AssetIds {
}

frame_support::parameter_types! {
const Signers: Vec<AccountId> = vec![ROOT];
pub Signers: Vec<AccountId> = vec![ROOT];
boundless-forest marked this conversation as resolved.
Show resolved Hide resolved
}

impl pallet_assets::Config for Runtime {
Expand Down