Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
80f5c6b
uplift to stable2407
magecnion Sep 12, 2024
7d08b77
https://github.com/paritytech/polkadot-sdk/pull/4831
magecnion Sep 12, 2024
c2393a1
https://github.com/paritytech/polkadot-sdk/pull/3820
magecnion Sep 12, 2024
d3ab8b0
polkadot-evm/frontier#1253
magecnion Sep 12, 2024
3c38125
paritytech/polkadot-sdk#3952
magecnion Sep 12, 2024
d83ce57
paritytech/polkadot-sdk#3872
magecnion Sep 12, 2024
f00b928
fix rpc_builder type
magecnion Sep 12, 2024
3c273a7
paritytech/polkadot-sdk#4410
magecnion Sep 12, 2024
e62bf50
paritytech/polkadot-sdk#4097
magecnion Sep 12, 2024
89eead2
use stable rust toolchain
magecnion Sep 12, 2024
a37221d
paritytech/polkadot-sdk#3964
magecnion Sep 12, 2024
5277f61
cargo fmt
magecnion Sep 12, 2024
30836ae
clippy and lint issues
magecnion Sep 12, 2024
77af763
e2e-test estimate gas when delegating
magecnion Sep 12, 2024
5b64ecb
only run staking e2e-test so it's easier for reviewing by external
magecnion Sep 12, 2024
11cd1a1
only run staking e2e-test so it's easier for reviewing by external
magecnion Sep 12, 2024
d70158c
restore run all e2e tests
magecnion Sep 13, 2024
43737f3
Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime…
asiniscalchi Sep 13, 2024
42e3392
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Sep 13, 2024
4ccef59
update cargo.lock
asiniscalchi Sep 13, 2024
1b74336
using runtime
asiniscalchi Sep 13, 2024
35896b7
fix command
luispdm Sep 13, 2024
7f688d3
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Oct 17, 2024
c09297c
fix compilation
asiniscalchi Oct 17, 2024
8ff0567
fix metadata test
asiniscalchi Oct 17, 2024
46b4d70
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Oct 29, 2024
685699f
missing Config associated type
asiniscalchi Oct 30, 2024
1b9a393
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Nov 20, 2024
5dc6e2b
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Nov 28, 2024
ee7e726
Merge branch 'main' into feature/upgrade-polkadot-sdk-to-stable2407
asiniscalchi Nov 28, 2024
a998750
modify MaxPageSize to the original till we need to increase it
magecnion Nov 28, 2024
4b6833e
use latest release for zombienet tests
magecnion Nov 28, 2024
682470a
go back to stable2407-3 release for zombienet tests
magecnion Nov 28, 2024
94201f3
go back to previous MaxPageSize
magecnion Nov 28, 2024
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
using runtime
  • Loading branch information
asiniscalchi committed Sep 13, 2024
commit 1b743366815bb9edd089e93898bc492ee6860c45
14 changes: 2 additions & 12 deletions runtime/laos/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,13 @@
// You should have received a copy of the GNU General Public License
// along with LAOS. If not, see <http://www.gnu.org/licenses/>.

use crate::Runtime;
use cumulus_primitives_core::{ListChannelInfos, ParaId};
use sp_std::vec::Vec;
use crate::{ParachainSystem, Runtime};

pub type Migrations = (
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5<Runtime>,
);

impl cumulus_pallet_xcmp_queue::migration::v5::V5Config for Runtime {
type ChannelList = EmptyChannelList;
}

pub struct EmptyChannelList;
impl ListChannelInfos for EmptyChannelList {
fn outgoing_channels() -> Vec<ParaId> {
// No outgoing channels
Vec::new()
}
type ChannelList = ParachainSystem;
}