From 7fcfa8a996f9ee9b13ff7d21a52b04f9a41e34f9 Mon Sep 17 00:00:00 2001 From: "troyb.eth" Date: Thu, 2 Feb 2023 16:58:06 -0700 Subject: [PATCH] chore: bump migration version (#1956) bump version --- state/migrations.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/state/migrations.ts b/state/migrations.ts index 5db4fb5648..ff58e53e91 100644 --- a/state/migrations.ts +++ b/state/migrations.ts @@ -9,10 +9,10 @@ export const migrations = { prices: PRICES_INITIAL_STATE, }; }, - 4: (state: any) => { + 5: (state: any) => { return { ...state, - futures: INITIAL_STATE, + futures: FUTURES_INITIAL_STATE, }; }, };