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 lockdropHelper iterates through index of the lockdropContracts that is passed into the function here https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/helpers/lockdropHelper.js#L71, but in most of the tests we're only passing in a single contract https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/test/1-lockdrop.spec.js#L144 that's generated here https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/test/1-lockdrop.spec.js#L21, instead of passing in an array of them.
index
lockdropContracts
The text was updated successfully, but these errors were encountered:
It should be for (let index in lockdropContracts) { instead of just for (index in lockdropContracts) { otherwise it gives error index is not defined.
for (let index in lockdropContracts) {
for (index in lockdropContracts) {
Sorry, something went wrong.
No branches or pull requests
The lockdropHelper iterates through
index
of thelockdropContracts
that is passed into the function here https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/helpers/lockdropHelper.js#L71, but in most of the tests we're only passing in a single contract https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/test/1-lockdrop.spec.js#L144 that's generated here https://github.com/hicommonwealth/edgeware-lockdrop/blob/master/test/1-lockdrop.spec.js#L21, instead of passing in an array of them.The text was updated successfully, but these errors were encountered: