Skip to content

Commit

Permalink
update versions for orderbook and foreign investmenrts
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Apr 4, 2024
1 parent 48eef50 commit b617f08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion runtime/altair/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

use crate::{OraclePriceCollection, OraclePriceFeed};
use crate::{ForeignInvestments, OraclePriceCollection, OraclePriceFeed, OrderBook};

/// The migration set for Altair @ Kusama.
/// It includes all the migrations that have to be applied on that chain.
pub type UpgradeAltair1035 = (
runtime_common::migrations::increase_storage_version::Migration<OraclePriceFeed, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<OraclePriceCollection, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<OrderBook, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<ForeignInvestments, 0, 1>,
);

0 comments on commit b617f08

Please sign in to comment.