Skip to content

Commit cf3b633

Browse files
committed
[Aptos] fix imports
1 parent c9e4d64 commit cf3b633

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

deployment/ccip/changeset/aptos/cs_upgrade_aptos_ccip.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
1212
"github.com/smartcontractkit/chainlink-deployments-framework/operations"
1313
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/config"
14-
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/operation"
14+
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/dependency"
1515
seq "github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/sequence"
1616
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/utils"
1717
"github.com/smartcontractkit/chainlink/deployment/ccip/shared/stateview"
@@ -75,7 +75,7 @@ func (cs UpgradeAptosChain) Apply(env cldf.Environment, cfg config.UpgradeAptosC
7575
return cldf.ChangesetOutput{}, fmt.Errorf("failed to load Aptos onchain state: %w", err)
7676
}
7777

78-
deps := operation.AptosDeps{
78+
deps := dependency.AptosDeps{
7979
AptosChain: env.BlockChains.AptosChains()[cfg.ChainSelector],
8080
CCIPOnChainState: state,
8181
}

deployment/ccip/changeset/aptos/sequence/upgrade_ccip.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55

66
"github.com/smartcontractkit/chainlink-deployments-framework/operations"
77
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/config"
8+
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/dependency"
89
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/operation"
910
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/aptos/utils"
1011
)
@@ -16,7 +17,7 @@ var UpgradeCCIPSequence = operations.NewSequence(
1617
upgradeCCIPSequence,
1718
)
1819

19-
func upgradeCCIPSequence(b operations.Bundle, deps operation.AptosDeps, in config.UpgradeAptosChainConfig) ([]mcmstypes.BatchOperation, error) {
20+
func upgradeCCIPSequence(b operations.Bundle, deps dependency.AptosDeps, in config.UpgradeAptosChainConfig) ([]mcmstypes.BatchOperation, error) {
2021
var mcmsOperations []mcmstypes.BatchOperation
2122
mcmsAddress := deps.CCIPOnChainState.AptosChains[deps.AptosChain.Selector].MCMSAddress
2223
// Cleanup staging area

0 commit comments

Comments
 (0)