소스 검색

Fix linter.

(cherry picked from commit c92b75305ea671fb18c01687f1ed22462a8c56c9)
Nicolás Venturo 6 년 전
부모
커밋
81d04101ff
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      contracts/token/ERC777/ERC777.sol

+ 4 - 3
contracts/token/ERC777/ERC777.sol

@@ -27,13 +27,14 @@ contract ERC777 is IERC777, IERC20 {
 
     // We inline the result of the following hashes because Solidity doesn't resolve them at compile time.
     // See https://github.com/ethereum/solidity/issues/4024.
-    //
+
     // keccak256("ERC777TokensSender")
     bytes32 constant private TOKENS_SENDER_INTERFACE_HASH =
-      0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;
+        0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;
+
     // keccak256("ERC777TokensRecipient")
     bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH =
-      0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;
+        0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;
 
     // This isn't ever read from - it's only used to respond to the defaultOperators query.
     address[] private _defaultOperatorsArray;