From 1863818995b88433ddc80014fc549ecc0dca4ba9 Mon Sep 17 00:00:00 2001 From: Moody Salem Date: Fri, 5 Jul 2024 16:50:51 +0100 Subject: [PATCH] improve the comment --- src/governor.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/governor.cairo b/src/governor.cairo index c3f947d..72cf39a 100644 --- a/src/governor.cairo +++ b/src/governor.cairo @@ -89,7 +89,7 @@ pub trait IGovernor { // Replaces the code at this address. This must be self-called via a proposal. fn upgrade(ref self: TContractState, class_hash: ClassHash); - // Migrates to the fixed storage layout, i.e. the storage layout from before v2.1.0 + // Migrates to the latest version of storage layout, from the version of storage before v2.1.0 fn _migrate_old_config_storage(ref self: TContractState); }