Commit c92b7530 by Nicolás Venturo

Fix linter.

parent e60c7904
...@@ -27,10 +27,11 @@ contract ERC777 is IERC777, IERC20 { ...@@ -27,10 +27,11 @@ contract ERC777 is IERC777, IERC20 {
// We inline the result of the following hashes because Solidity doesn't resolve them at compile time. // 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. // See https://github.com/ethereum/solidity/issues/4024.
//
// keccak256("ERC777TokensSender") // keccak256("ERC777TokensSender")
bytes32 constant private TOKENS_SENDER_INTERFACE_HASH = bytes32 constant private TOKENS_SENDER_INTERFACE_HASH =
0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895; 0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;
// keccak256("ERC777TokensRecipient") // keccak256("ERC777TokensRecipient")
bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH = bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH =
0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b; 0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment