diff --git a/implementation/contracts/DepositLog.sol b/implementation/contracts/DepositLog.sol index e8d2a9119..8494e8a2a 100644 --- a/implementation/contracts/DepositLog.sol +++ b/implementation/contracts/DepositLog.sol @@ -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, @@ -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 {