Skip to content

Commit

Permalink
Fix constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnial committed Feb 24, 2018
1 parent 1859e06 commit 0702923
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions contracts/test/DummyCollateralizedContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ import "../examples/Collateralized.sol";
contract DummyCollateralizedContract is Collateralized {
using SafeMath for uint;

function DummyCollateralizedContract(address _debtRegistry) {
Collateralized(address);
}
function DummyCollateralizedContract(address _debtRegistry) Collateralized(_debtRegistry) public {}

function registerRepayment(
bytes32 agreementId,
Expand Down

0 comments on commit 0702923

Please sign in to comment.