Commit cc4895be authored by tre's avatar tre

lint

parent 188d1e93
...@@ -57,10 +57,11 @@ contract AdminFaucetAuthModuleTest is Test { ...@@ -57,10 +57,11 @@ contract AdminFaucetAuthModuleTest is Test {
* @notice Get signature as a bytes blob. * @notice Get signature as a bytes blob.
* *
*/ */
function _getSignature( function _getSignature(uint256 _signingPrivateKey, bytes32 _digest)
uint256 _signingPrivateKey, internal
bytes32 _digest pure
) internal pure returns (bytes memory) { returns (bytes memory)
{
(uint8 v, bytes32 r, bytes32 s) = vm.sign(_signingPrivateKey, _digest); (uint8 v, bytes32 r, bytes32 s) = vm.sign(_signingPrivateKey, _digest);
bytes memory signature = abi.encodePacked(r, s, v); bytes memory signature = abi.encodePacked(r, s, v);
......
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