From 1ad7268b81952176ecffb7993fe42920507fb1e4 Mon Sep 17 00:00:00 2001 From: Richard Melkonian Date: Fri, 7 Mar 2025 16:16:17 -0800 Subject: [PATCH] fix: use reference for upgrade script --- .../maptos/framework/releases/biarritz-rc1/src/cached.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol-units/execution/maptos/framework/releases/biarritz-rc1/src/cached.rs b/protocol-units/execution/maptos/framework/releases/biarritz-rc1/src/cached.rs index 6c1d2c98c..efb179f31 100644 --- a/protocol-units/execution/maptos/framework/releases/biarritz-rc1/src/cached.rs +++ b/protocol-units/execution/maptos/framework/releases/biarritz-rc1/src/cached.rs @@ -41,7 +41,7 @@ script { governed_gas_pool::initialize(framework_signer, b"aptos_framework::governed_gas_pool"); // this will burn the mint capability for the core signer - aptos_coin::destroy_mint_capability_from(core_signer, signer::address_of(framework_signer)); + aptos_coin::destroy_mint_capability_from(&core_signer, signer::address_of(framework_signer)); } } "#