Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
syntrust committed Oct 15, 2024
1 parent c20ce63 commit b9cd261
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/StorageContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ abstract contract StorageContract is DecentralizedKV {
/// @notice Fund tracker for prepaid
uint256 public accPrepaidAmount;

/// @notice Reentrancy lock
/// @notice Reentrancy lock
bool private transient locked;

// TODO: Reserve extra slots (to a total of 50?) in the storage layout for future upgrades
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"install:all": "npm install && forge install",
"compile": "hardhat compile",
"test": "hardhat test && forge test",
"format:check": "forge fmt --check contracts/**/*.sol",
"format:fix": "forge fmt contracts/**/*.sol",
"format:check": "forge fmt --check",
"format:fix": "forge fmt",
"formatjs": "prettier --write test/**/*.js scripts/**/*.js",
"deploy": "npx hardhat run scripts/deploy.js --network sepolia",
"deployL2Dev": "npx hardhat run scripts/deployL2.js --network qkc_devnet",
Expand Down

0 comments on commit b9cd261

Please sign in to comment.