Commit d8769aed authored by tre's avatar tre

lint

parent ef244a83
...@@ -48,9 +48,11 @@ contract FaucetHelper { ...@@ -48,9 +48,11 @@ contract FaucetHelper {
* *
* @return EIP-712 typed struct hash. * @return EIP-712 typed struct hash.
*/ */
function getProofStructHash( function getProofStructHash(AdminFaucetAuthModule.Proof memory _proof)
AdminFaucetAuthModule.Proof memory _proof public
) public pure returns (bytes32) { pure
returns (bytes32)
{
return keccak256(abi.encode(PROOF_TYPEHASH, _proof.recipient, _proof.nonce, _proof.id)); return keccak256(abi.encode(PROOF_TYPEHASH, _proof.recipient, _proof.nonce, _proof.id));
} }
......
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