Skip to content

Commit

Permalink
Just fix contract generation
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers committed Aug 2, 2022
1 parent 87496ee commit e973f65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/scripts/migrate-contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const outputFlaskConfigFile = async (outputPath) => {

module.exports = async callback => {
try {
const libsDirRoot = path.join(getDirectoryRoot(AudiusLibs), 'data-contracts')
const libsDirRoot = path.join(getDirectoryRoot(AudiusLibs), 'src/data-contracts')
fs.removeSync(libsDirRoot)

await copyBuildDirectory(path.join(libsDirRoot, '/ABIs'))
Expand Down
2 changes: 1 addition & 1 deletion eth-contracts/scripts/migrate-contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const outputJsonConfigFile = async (outputFilePath) => {
module.exports = async callback => {
// output to Libs
try {
const libsDirRoot = path.join(getDirectoryRoot(Libs), 'eth-contracts')
const libsDirRoot = path.join(getDirectoryRoot(Libs), 'src/eth-contracts')
fs.removeSync(libsDirRoot)

await copyBuildDirectory(path.join(libsDirRoot, '/ABIs'))
Expand Down

0 comments on commit e973f65

Please sign in to comment.