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
In case anyone else gets this: "Error: Could not find artifacts for Timelock from any sources"
there is a confusion of case between contracts/Timelock.sol lower case ell
and contract TimeLock is TimelockController { upper case ell -- from above error truffle is looking for lower case so workaround after compile to uppercase artifact:
In case anyone else gets this: "Error: Could not find artifacts for Timelock from any sources"
there is a confusion of case between contracts/Timelock.sol lower case ell
and contract TimeLock is TimelockController { upper case ell -- from above error truffle is looking for lower case so workaround after compile to uppercase artifact:
mv build/contracts/TimeLock.json build/contracts/Timelock.json
-- or -- before compile, edit contracts/Timelock.sol and change contract TimeLock to Timelock
The text was updated successfully, but these errors were encountered: