From ce8ca8ab6cebdd5b37aee5fc3713a9d4387ba148 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Thu, 30 Jan 2025 20:18:54 +0100 Subject: [PATCH 1/4] Update README.md --- upgrade_policy/quorum_upgrade/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade_policy/quorum_upgrade/README.md b/upgrade_policy/quorum_upgrade/README.md index 9a0d6d5..cb5a36e 100644 --- a/upgrade_policy/quorum_upgrade/README.md +++ b/upgrade_policy/quorum_upgrade/README.md @@ -181,7 +181,7 @@ by value. Also, and for the same reasons, `quorum_upgrade_policy::destroy_proposed_upgrade` will not work right now. However we thought it was important to expose -that API right now so that once shared object deletion is avaiable, +that API right now so that once shared object deletion is available, `ProposedUpgrade` instances can be deleted and the storage cost recovered. We are also considering offering an alternative way to vote in a proposal by From 575382423b920a3fe03f029a1eabd8c15d29e78b Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Thu, 30 Jan 2025 20:19:15 +0100 Subject: [PATCH 2/4] Update README.md --- upgrade_policy/quorum_upgrade/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade_policy/quorum_upgrade/README.md b/upgrade_policy/quorum_upgrade/README.md index cb5a36e..06137f8 100644 --- a/upgrade_policy/quorum_upgrade/README.md +++ b/upgrade_policy/quorum_upgrade/README.md @@ -172,7 +172,7 @@ proper to be able to switch those at will. It's possible that voting for a trans is all that will be required, however we are still considering the alternatives. Shared object deletion is coming very soon, and today the policy protocol is -not as seemless as it could be if that feature was already available. In +not as seamless as it could be if that feature was already available. In an ideal scenario the `quorum_upgrade_policy::authorize_upgrade` should take the `ProposedUpgrade` by value and destroy it. But that does not work for now. As soon as shared object deletion is enabled we may decide to From 5878754dcbf5fa46f148a00d7ce1b2444b1e9953 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Thu, 30 Jan 2025 20:19:35 +0100 Subject: [PATCH 3/4] Update genesis_tests.move --- suifrens/suifrens/tests/genesis_tests.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suifrens/suifrens/tests/genesis_tests.move b/suifrens/suifrens/tests/genesis_tests.move index 6b4d264..971d8f3 100644 --- a/suifrens/suifrens/tests/genesis_tests.move +++ b/suifrens/suifrens/tests/genesis_tests.move @@ -288,7 +288,7 @@ module suifrens::genesis_tests { //Increase Epoch X+1 tx_context::increment_epoch_number(ts::ctx(&mut test)); - //Mix Capy Again... This should passs + //Mix Capy Again... This should pass let _mixedCapy2 = capy_labs::mix(&mut capy_labs, &mut _mixedCapy, &mut _capy2, &clock, &mut coin_to_pay_mix2, ts::ctx(&mut test)); sf::test_destroy_admin_cap(admin_cap); From cbf294e8cf0f986c20b6a3c6d1fe03d9323249d4 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Thu, 30 Jan 2025 20:20:06 +0100 Subject: [PATCH 4/4] Update quorum_upgrade_policy.move --- .../quorum_upgrade/sources/quorum_upgrade_policy.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade_policy/quorum_upgrade/sources/quorum_upgrade_policy.move b/upgrade_policy/quorum_upgrade/sources/quorum_upgrade_policy.move index 6063990..1f17063 100644 --- a/upgrade_policy/quorum_upgrade/sources/quorum_upgrade_policy.move +++ b/upgrade_policy/quorum_upgrade/sources/quorum_upgrade_policy.move @@ -146,7 +146,7 @@ module quorum_upgrade_policy::quorum_upgrade_policy { signer: address, } - /// A succesful upgrade. + /// A successful upgrade. public struct UpgradePerformed has copy, drop { /// The instance of the quorum upgrade policy. upgrade_cap: ID,