Commit ef244a83 authored by tre's avatar tre

lint

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