Skip to content

Commit

Permalink
Revert "remove test functions"
Browse files Browse the repository at this point in the history
This reverts commit cd1198e.
  • Loading branch information
eyqs committed Nov 10, 2024
1 parent 0fd1027 commit 28f86c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions staking/src/proxy/PlumePreReserveFund.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ contract PlumePreReserveFund is ERC1967Proxy {
bytes32 public constant PROXY_NAME = keccak256("PlumePreReserveFund");

constructor(address logic, bytes memory data) ERC1967Proxy(logic, data) { }
function test() public virtual { }

/// @dev Fallback function to silence compiler warnings
receive() external payable {
Expand Down
1 change: 1 addition & 0 deletions staking/src/proxy/PlumePreStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ contract PlumePreStaking is ERC1967Proxy {
bytes32 public constant PROXY_NAME = keccak256("PlumePreStaking");

constructor(address logic, bytes memory data) ERC1967Proxy(logic, data) { }
function test() public virtual { }

/// @dev Fallback function to silence compiler warnings
receive() external payable {
Expand Down

0 comments on commit 28f86c2

Please sign in to comment.