Skip to content

Commit 2ae0531

Browse files
committed
pin tact package contents
1 parent 1bfd01f commit 2ae0531

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/deploy-controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class DeployController {
3535
const fileContents = await Promise.all(
3636
files.map(async (name) => {
3737
const content = await this.fileSystem.readFile(path.join(tmpDir, name));
38-
const [hash] = await this.storageProvider.hashForContent([content]);
38+
const [hash] = await this.storageProvider.writeFromContent([content], true);
3939
return { name, hash, content };
4040
}),
4141
);
@@ -62,7 +62,7 @@ export class DeployController {
6262
}),
6363
...fileContents.map(({ content }) => content),
6464
],
65-
false,
65+
true,
6666
);
6767

6868
logger.debug("Uploading ABI to storage");

0 commit comments

Comments
 (0)