daostack / infra

GNU General Public License v3.0
25 stars 22 forks source link

fix openzeppelin version #62

Closed dkent600 closed 5 years ago

dkent600 commented 5 years ago

Can you please remove the '^' from the openzeppelin version in package.json?

This will clearly indicate to the world what version is being used to compile the contracts, and address an issue with verification in migration when the openzeppelin version changes.

dkent600 commented 5 years ago

turns out this is already the case. the problem was that npm install was inserting the '^' character. What was needed in the migration verfiy script was to run npm install with the --no-save argument.