Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmishra2005 committed Jul 17, 2024
1 parent 8b05eee commit a8e1b0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 27 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/docker-img-hackathon.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion runtime/cere-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,9 @@ pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;

/// Runtime migrations
type Migrations = ();
type Migrations = (
pallet_ddc_customers::migration::MigrateToV1<Runtime>,
);

/// Executive: handles dispatch to the various modules.
pub type Executive = frame_executive::Executive<
Expand Down
1 change: 1 addition & 0 deletions runtime/cere/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1387,6 +1387,7 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, Si
type Migrations = (
pallet_ddc_clusters::migrations::v2::MigrateToV2<Runtime>,
pallet_ddc_staking::migrations::v1::MigrateToV1<Runtime>,
pallet_ddc_customers::migration::MigrateToV1<Runtime>,
);

/// Executive: handles dispatch to the various modules.
Expand Down

0 comments on commit a8e1b0f

Please sign in to comment.