Skip to content

Commit

Permalink
Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranbt committed Feb 18, 2024
1 parent 72b439c commit 42a2581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suave/sol/libraries/Suave.sol
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ library Suave {
return abi.decode(data, (DataRecord));
}

function privateKeyGen(CryptoSignature memory crypto) internal returns (string memory) {
function privateKeyGen(CryptoSignature crypto) internal returns (string memory) {
(bool success, bytes memory data) = PRIVATE_KEY_GEN.call(abi.encode(crypto));
if (!success) {
revert PeekerReverted(PRIVATE_KEY_GEN, data);
Expand All @@ -245,7 +245,7 @@ library Suave {
return abi.decode(data, (bytes));
}

function signMessage(bytes memory digest, CryptoSignature memory crypto, string memory signingKey)
function signMessage(bytes memory digest, CryptoSignature crypto, string memory signingKey)
internal
returns (bytes memory)
{
Expand Down

0 comments on commit 42a2581

Please sign in to comment.