Skip to content

Commit

Permalink
Use complete task names in deployment scripts to avoid collisions. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ignacio Ubeira authored Nov 9, 2022
1 parent f5b0322 commit bb40ac9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export type ChildChainGaugeTokenAdderDeployment = {
AuthorizerAdaptor: string;
};

const ChildChainLiquidityGaugeFactory = new Task('child-chain-gauge-factory', TaskMode.READ_ONLY);
const AuthorizerAdaptor = new Task('authorizer-adaptor', TaskMode.READ_ONLY);
const ChildChainLiquidityGaugeFactory = new Task('20220413-child-chain-gauge-factory', TaskMode.READ_ONLY);
const AuthorizerAdaptor = new Task('20220325-authorizer-adaptor', TaskMode.READ_ONLY);

export default {
ChildChainLiquidityGaugeFactory,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export type PreseededVotingEscrowDelegationDeployment = {
PreseededApprovalCalls: SetApprovalForAllCall[];
};

const VotingEscrow = new Task('gauge-controller', TaskMode.READ_ONLY);
const AuthorizerAdaptor = new Task('authorizer-adaptor', TaskMode.READ_ONLY);
const VotingEscrow = new Task('20220325-gauge-controller', TaskMode.READ_ONLY);
const AuthorizerAdaptor = new Task('20220325-authorizer-adaptor', TaskMode.READ_ONLY);

export default {
VotingEscrow,
Expand Down

0 comments on commit bb40ac9

Please sign in to comment.