Skip to content

Commit 58fcb6f

Browse files
authored
Merge pull request #55 from GianfrancoBazzani/patch-1
🔨 fix typo in Hevm.sol
2 parents 4a328b8 + 21135e4 commit 58fcb6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/util/Hevm.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ interface IHevm {
2121
// Stores a value to an address' storage slot
2222
function store(address where, bytes32 slot, bytes32 value) external;
2323

24-
// Signs data (privateKey, digest) => (r, v, s)
24+
// Signs data (privateKey, digest) => (v, r, s)
2525
function sign(
2626
uint256 privateKey,
2727
bytes32 digest
28-
) external returns (uint8 r, bytes32 v, bytes32 s);
28+
) external returns (uint8 v, bytes32 r, bytes32 s);
2929

3030
// Gets address for a given private key
3131
function addr(uint256 privateKey) external returns (address addr);

0 commit comments

Comments
 (0)