You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since version 5.7.0, running truffle migrate on a new test chain fails (with ganache chainId=1337). Calls to artifacts.require(...) and <obj>.deploye() are failing in various migration scripts .
For example, In 4_deploy_core.js : TokenInstance = await RLC.deployed() is failing. truffle is not able to retrieve the deployed address.
The problem is mostly due to the fact that the ABI json file resolve algorithm has changed since between truffle v5.6.9 and v5.7.0
The text was updated successfully, but these errors were encountered:
Since version 5.7.0, running
truffle migrate
on a new test chain fails (with ganache chainId=1337). Calls toartifacts.require(...)
and<obj>.deploye()
are failing in various migration scripts .For example, In 4_deploy_core.js :
TokenInstance = await RLC.deployed()
is failing. truffle is not able to retrieve the deployed address.The problem is mostly due to the fact that the ABI json file resolve algorithm has changed since between truffle v5.6.9 and v5.7.0
The text was updated successfully, but these errors were encountered: