diff --git a/deployment/ccip/changeset/solana/cs_deploy_chain_test.go b/deployment/ccip/changeset/solana/cs_deploy_chain_test.go index 9d377838abe..27c1cae6b29 100644 --- a/deployment/ccip/changeset/solana/cs_deploy_chain_test.go +++ b/deployment/ccip/changeset/solana/cs_deploy_chain_test.go @@ -145,7 +145,7 @@ func TestDeployChainContractsChangesetSolana(t *testing.T) { testhelpers.ValidateSolanaState(t, e, solChainSelectors) // Expensive to run in CI if !ci { - timelockSignerPDA, _ := testhelpers.TransferOwnershipSolana(t, &e, solChainSelectors[0], true, true, true, true) + timelockSignerPDA, _ := testhelpers.TransferOwnershipSolana(t, &e, solChainSelectors[0], true, true, true, true, nil, nil) upgradeAuthority := timelockSignerPDA state, err := changeset.LoadOnchainStateSolana(e) require.NoError(t, err) diff --git a/deployment/ccip/changeset/solana/cs_token_pool_test.go b/deployment/ccip/changeset/solana/cs_token_pool_test.go index 9026bbdd0c6..1af5f4f8d5d 100644 --- a/deployment/ccip/changeset/solana/cs_token_pool_test.go +++ b/deployment/ccip/changeset/solana/cs_token_pool_test.go @@ -159,7 +159,7 @@ func doTestTokenPool(t *testing.T, mcms bool) { var mcmsConfig *ccipChangesetSolana.MCMSConfigSolana if testCase.mcms && !mcmsConfigured { - _, _ = testhelpers.TransferOwnershipSolana(t, &e, solChain, true, true, true, true) + _, _ = testhelpers.TransferOwnershipSolana(t, &e, solChain, true, true, true, true, nil, nil) mcmsConfig = &ccipChangesetSolana.MCMSConfigSolana{ MCMS: &ccipChangeset.MCMSConfig{ MinDelay: 1 * time.Second, diff --git a/deployment/ccip/changeset/solana/transfer_ccip_to_mcms_with_timelock_test.go b/deployment/ccip/changeset/solana/transfer_ccip_to_mcms_with_timelock_test.go index a957b74c91f..ec617a0ed76 100644 --- a/deployment/ccip/changeset/solana/transfer_ccip_to_mcms_with_timelock_test.go +++ b/deployment/ccip/changeset/solana/transfer_ccip_to_mcms_with_timelock_test.go @@ -316,7 +316,6 @@ func prepareEnvironmentForOwnershipTransfer(t *testing.T) (deployment.Environmen ChainSelector: solChain1, TokenPubKey: tokenAddressBurnMint.String(), PoolType: test_token_pool.BurnAndMint_PoolType, - Authority: e.SolChains[solChain1].DeployerKey.PublicKey().String(), }, ), })