Skip to content

Commit

Permalink
Fix ASM patch
Browse files Browse the repository at this point in the history
  • Loading branch information
msinkec committed Jun 20, 2024
1 parent a383721 commit fa521c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .asm/asm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"VaultUnvaulted": {
"VaultCompleteWithdrawal": {
"csv": "OP_CODESEPARATOR OP_TRUE"
}
}
4 changes: 2 additions & 2 deletions postCompile.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as fs from 'fs';
import * as path from 'path';

const filePath = path.resolve(__dirname, './artifacts/vaultUnvaulted.json');
const filePath = path.resolve(__dirname, './artifacts/vaultCompleteWithdrawal.scrypt');

fs.readFile(filePath, 'utf8', (err, data) => {
if (err) {
Expand All @@ -21,4 +21,4 @@ fs.readFile(filePath, 'utf8', (err, data) => {

console.log('File updated successfully.');
});
});
});

0 comments on commit fa521c1

Please sign in to comment.