remove warnings
This commit is contained in:
parent
907ab5dffd
commit
6c8f0be564
|
@ -17,7 +17,7 @@ contract DelegationFactory is InstanceFactory {
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
function createDelegation(
|
function createDelegation(
|
||||||
Delegation _parent
|
Delegation /*_parent*/
|
||||||
)
|
)
|
||||||
external
|
external
|
||||||
returns (DelegationAbstract instance)
|
returns (DelegationAbstract instance)
|
||||||
|
|
|
@ -17,13 +17,13 @@ contract ProposalFactory is InstanceFactory {
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
function createProposal(
|
function createProposal(
|
||||||
MiniMeToken _token,
|
MiniMeToken /*_token*/,
|
||||||
Delegation _delegation,
|
Delegation /*_delegation*/,
|
||||||
bytes32 _dataHash,
|
bytes32 /*_dataHash*/,
|
||||||
uint256 _tabulationBlockDelay,
|
uint256 /*_tabulationBlockDelay*/,
|
||||||
uint256 _blockStart,
|
uint256 /*_blockStart*/,
|
||||||
uint256 _blockEndDelay,
|
uint256 /*_blockEndDelay*/,
|
||||||
Proposal.QuorumType _quorum
|
Proposal.QuorumType /*_quorum*/
|
||||||
)
|
)
|
||||||
external
|
external
|
||||||
returns (ProposalAbstract instance)
|
returns (ProposalAbstract instance)
|
||||||
|
|
Loading…
Reference in New Issue