Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add builds documentation
  • Loading branch information
rotcivegaf committed May 31, 2019
commit 312d82448ab51317818864df99246827ef5f9cd6
9 changes: 9 additions & 0 deletions contracts/core/diaspore/DebtEngine.sol
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,9 @@ contract DebtEngine is ERC721Base, Ownable {
});
}

/**
@notice Getter of id when use create function
*/
function buildId(
address _creator,
uint256 _nonce
Expand All @@ -291,6 +294,9 @@ contract DebtEngine is ERC721Base, Ownable {
);
}

/**
@notice Getter of id when use create2 function
*/
function buildId2(
address _creator,
address _model,
Expand All @@ -311,6 +317,9 @@ contract DebtEngine is ERC721Base, Ownable {
);
}

/**
@notice Getter of id when use create3 function
*/
function buildId3(
address _creator,
uint256 _salt
Expand Down