Skip to content

Commit

Permalink
fix: changeset params for transfer ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
ecPablo committed Feb 27, 2025
1 parent 927fd7e commit fe22c0d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployment/ccip/changeset/solana/cs_deploy_chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion deployment/ccip/changeset/solana/cs_token_pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
},
),
})
Expand Down

0 comments on commit fe22c0d

Please sign in to comment.