Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincheng96 committed Oct 15, 2024
1 parent c241dea commit 6e78f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quark-core/src/QuarkScript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ abstract contract QuarkScript {
/**
* @notice Returns a key isolated to the active nonce of a script. This provides cooperative isolation of storage between scripts.
* @param key The key to create an nonce-isolated version of
* @return The nonce-isolated version of the key
*/
function getNonceIsolatedKey(bytes32 key) internal view returns (bytes32) {
bytes32 nonce = getActiveNonce();
Expand Down Expand Up @@ -188,7 +189,6 @@ abstract contract QuarkScript {
/**
* @notice Returns the active replay count of this script. Thus, the first submission should return 0,
* the second submission 1, and so on.
* @param key The key to create an nonce-isolated version of
*/
function getActiveReplayCount() internal view returns (uint256) {
bytes32 nonce = getActiveNonce();
Expand Down

0 comments on commit 6e78f17

Please sign in to comment.