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

Upgrade Polkadot dependencies to v0.9.25 #669

Merged
merged 26 commits into from
Aug 15, 2022
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3d37710
update to v0.9.25
alistair-singh Aug 4, 2022
fda6d4a
Remove deprecated transactional statements. This is now default behav…
alistair-singh Aug 4, 2022
add0197
remove transaction imports
alistair-singh Aug 4, 2022
43612ae
fixed account id conversions
alistair-singh Aug 4, 2022
8fdac10
Removed deprecated EnsureOneOf
alistair-singh Aug 4, 2022
08eb6c3
runtime upgrades
alistair-singh Aug 4, 2022
3b2ee48
Fixed build errors
alistair-singh Aug 8, 2022
aa60f59
panic instead of truncating accounts on conversion
alistair-singh Aug 8, 2022
1198f84
Revert "Remove deprecated transactional statements. This is now defau…
alistair-singh Aug 8, 2022
5e52719
Revert "remove transaction imports"
alistair-singh Aug 8, 2022
3d267ef
changed order
alistair-singh Aug 8, 2022
7460794
updated rust runtime
alistair-singh Aug 9, 2022
b9e5e8d
updated runtime
alistair-singh Aug 9, 2022
3ec1697
updated readme
alistair-singh Aug 9, 2022
cb3d36f
re-enable tests
alistair-singh Aug 9, 2022
ec7f20c
rustfmt
alistair-singh Aug 9, 2022
703bd9a
updated test parachain
alistair-singh Aug 9, 2022
777d89d
upgraded test parachain
alistair-singh Aug 9, 2022
0367819
fixed cmd line args
alistair-singh Aug 10, 2022
89615f7
excluded runtimes
alistair-singh Aug 10, 2022
649d72c
cargo update
alistair-singh Aug 12, 2022
f79b055
update polkadot launch
alistair-singh Aug 12, 2022
5222994
downgraded tracing to fix logging
alistair-singh Aug 12, 2022
64bdb0e
update metadata
alistair-singh Aug 12, 2022
479ace3
standardlise dependency format
alistair-singh Aug 15, 2022
4ac3516
remove unused import
alistair-singh Aug 15, 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
Prev Previous commit
Next Next commit
changed order
  • Loading branch information
alistair-singh committed Aug 15, 2022
commit 3d267eff8fe1510c35ae984466959b3f84e6f1d5
2 changes: 1 addition & 1 deletion parachain/runtime/snowbridge/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ impl cumulus_pallet_parachain_system::Config for Runtime {
type Event = Event;
type OnSystemEvent = ();
type SelfParaId = parachain_info::Pallet<Runtime>;
type OutboundXcmpMessageSource = XcmpQueue;
type DmpMessageHandler = DmpQueue;
type ReservedDmpWeight = ReservedDmpWeight;
type OutboundXcmpMessageSource = XcmpQueue;
type XcmpMessageHandler = XcmpQueue;
type ReservedXcmpWeight = ReservedXcmpWeight;
type CheckAssociatedRelayNumber = RelayNumberStrictlyIncreases;
Expand Down