Skip to content

Commit

Permalink
fix: lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
Stan Trenev committed Dec 8, 2023
1 parent e2125b7 commit c141ae6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 5 deletions.
28 changes: 28 additions & 0 deletions contracts/Greeter.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.4;

import { console } from "hardhat/console.sol";

error GreeterError();

contract Greeter {
string public greeting;

constructor(string memory _greeting) {
console.log("Deploying a Greeter with greeting:", _greeting);
greeting = _greeting;
}

function greet() public view returns (string memory) {
return greeting;
}

function setGreeting(string memory _greeting) public {
console.log("Changing greeting from '%s' to '%s'", greeting, _greeting);
greeting = _greeting;
}

function throwError() external pure {
revert GreeterError();
}
}

Check failure on line 28 in contracts/Greeter.sol

View workflow job for this annotation

GitHub Actions / ci

Insert ⏎
1 change: 1 addition & 0 deletions contracts/interfaces/ISafeVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ interface ISafeVault {
event SellTaxUpdated(uint256 newSellTaxBps);

function updateBuyTaxBps(uint256 newBuyTaxBps) external;

function updateSellTaxBps(uint256 newSellTaxBps) external;
}
19 changes: 14 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c141ae6

Please sign in to comment.