From 352fb84f4cf4234cacda271f14601c898bd0b65d Mon Sep 17 00:00:00 2001 From: Antonio Salazar Cardozo Date: Fri, 13 Mar 2020 15:15:14 -0400 Subject: [PATCH] Lose some trailing whitespace --- implementation/contracts/DepositLog.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {