-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
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
Multi Call factory #804
Multi Call factory #804
Conversation
bytes32 voteParams; | ||
if (_voteParamsType == FAST) { | ||
// Fast params hash | ||
voteParams = bytes32(0x1b46f925b15bc0590168247d8df7f72773ca64dec3334183b5387dd3945f7f2e); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that we might need to check here first if the params are set in the voting machine..
if not it should set it up.
Avatar _avatar, | ||
IntVoteInterface _votingMachine, | ||
uint8 _voteParamsType, | ||
bytes32 _voteParamsHash, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets add also the gov params..
something like https://github.com/daostack/arc/blob/master-2/contracts/schemes/ArcScheme.sol#L33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets move it under contracts/utils/
|
||
contract('genericSchemeMultiCallFactory', function(accounts) { | ||
before(function() { | ||
helpers.etherForEveryone(accounts); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is redundant
No description provided.