Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Lose some trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowfiend committed Mar 13, 2020
1 parent c86686a commit 352fb84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions implementation/contracts/DepositLog.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ contract DepositLog {
Everyone should be able to ENTIRELY rely on log messages
*/

// `TBTCDepositToken` mints a token for every new Deposit.
// `TBTCDepositToken` mints a token for every new Deposit.
// If a token exists for a given ID, we know it is a valid Deposit address.
TBTCDepositToken tbtcDepositToken;

// This event is fired when we init the deposit
event Created(
address indexed _depositContractAddress,
Expand Down Expand Up @@ -114,8 +114,8 @@ contract DepositLog {
return tbtcDepositToken.exists(uint256(_caller));
}

/// @notice Sets the tbtcDepositToken contract.
/// @dev The contract is used by `approvedToLog` to check if the
/// @notice Sets the tbtcDepositToken contract.
/// @dev The contract is used by `approvedToLog` to check if the
/// caller is a Deposit contract. This should only be called once.
/// @param _tbtcDepositTokenAddress The address of the tbtcDepositToken.
function setTbtcDepositToken(address _tbtcDepositTokenAddress) public {
Expand Down

0 comments on commit 352fb84

Please sign in to comment.