Merged changes on ProposalCuration from 000-tcr

This commit is contained in:
Richard Ramos 2018-06-21 13:58:05 -04:00
parent b50e5bf59e
commit 05aa20650b
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ contract ProposalCuration is Controlled {
uint256 submitPrice = getSubmitPrice(msg.sender);
require(token.allowance(msg.sender, address(this)) >= submitPrice);
require(token.transferFrom(msg.sender, address(this), submitPrice));
proposalId = proposalManager.addProposal(_topic,keccak256(_to,_value,_data));
proposalId = proposalManager.addProposal(_topic,keccak256(_to,_value,_data), 0, 1000);
proposals[proposalId] = ProposalData(
msg.sender,
_to,