We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code currently doesn't look in the truffle config file for a contracts directory, it just looks in the repo root:
vertigo/eth_vertigo/cli/main.py
Line 81 in 52dde15
I should be able to use the configured truffle directory if I wanted to.
module.exports = { contracts_directory: "./src/contracts", networks: {
Should be an easy fix, if you really need I can make the PR :)
The text was updated successfully, but these errors were encountered:
The same applies to the build folder.
build
I had to create a pile of symlinks to be able to run vertigo from nonstandard directories.
ln -s src/contracts contracts mkdir build cd build ln -s ../src/abis contracts
Sorry, something went wrong.
cd build ln -s ../src/abis contracts
It doesn't work. This will fix the contract directory issue, but when try to build for testing, will get new errors.
I fixed it like this.
No branches or pull requests
The code currently doesn't look in the truffle config file for a contracts directory, it just looks in the repo root:
vertigo/eth_vertigo/cli/main.py
Line 81 in 52dde15
I should be able to use the configured truffle directory if I wanted to.
Should be an easy fix, if you really need I can make the PR :)
The text was updated successfully, but these errors were encountered: