Formatting parameters

This commit is contained in:
Richard Ramos 2018-04-27 11:37:19 -04:00
parent 6440a0d2b4
commit 4b6b338449
1 changed files with 4 additions and 4 deletions

View File

@ -130,8 +130,8 @@ contract MessageTribute is MessageSigned {
}
function getRequestAudienceHash(
address grantor,
bytes32 hashedSecret,
address _grantor,
bytes32 _hashedSecret,
uint _timeLimit
)
public
@ -141,8 +141,8 @@ contract MessageTribute is MessageSigned {
return keccak256(
address(this),
bytes4(keccak256("requestAudience(address,bytes32,uint256)")),
grantor,
hashedSecret,
_grantor,
_hashedSecret,
_timeLimit
);
}