Skip to content

Commit

Permalink
Merge pull request #157 from llllllluc/l/bump-optimizer-version
Browse files Browse the repository at this point in the history
bump cw optimizer version to latest
  • Loading branch information
emidev98 committed Oct 18, 2023
2 parents 3b0f715 + 47c7632 commit 9fa2224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const optimizeContract = async ({
const folder = path.join('contracts', contract);
process.chdir(folder);

const image = `cosmwasm/rust-optimizer${arm64 ? '-arm64' : ''}:0.12.6`;
const image = `cosmwasm/rust-optimizer${arm64 ? '-arm64' : ''}:0.14.0`;

execDockerOptimization(image, contract);

Expand All @@ -102,7 +102,7 @@ const optimizeWorkspace = async ({
contract,
arm64,
}: OptimizeContractParams) => {
const image = `cosmwasm/workspace-optimizer${arm64 ? '-arm64' : ''}:0.12.6`;
const image = `cosmwasm/workspace-optimizer${arm64 ? '-arm64' : ''}:0.14.0`;
execDockerOptimization(image, contract);
};

Expand Down

0 comments on commit 9fa2224

Please sign in to comment.