From b617f08a7093407f5de3841879b95d01e5b4e8d1 Mon Sep 17 00:00:00 2001 From: lemunozm Date: Thu, 4 Apr 2024 11:24:37 +0200 Subject: [PATCH] update versions for orderbook and foreign investmenrts --- runtime/altair/src/migrations.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/altair/src/migrations.rs b/runtime/altair/src/migrations.rs index fd6da45151..39f34d3b93 100644 --- a/runtime/altair/src/migrations.rs +++ b/runtime/altair/src/migrations.rs @@ -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, runtime_common::migrations::increase_storage_version::Migration, + runtime_common::migrations::increase_storage_version::Migration, + runtime_common::migrations::increase_storage_version::Migration, );