Skip to content

Commit

Permalink
prettier auto formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaman1337 authored and github-actions[bot] committed Oct 21, 2024
1 parent be07d9d commit b7562a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 6 additions & 1 deletion protocol/contracts/tokens/Fertilizer/Fertilizer1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ contract Fertilizer1155 is ERC1155Upgradeable {
__doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
}

function _safeBurn(address from, uint256 id, uint256 amount, bytes memory data) internal virtual {
function _safeBurn(
address from,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");

address operator = _msgSender();
Expand Down
1 change: 0 additions & 1 deletion protocol/test/foundry/sun/Flood.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ contract FloodTest is TestHelper {
uint256 userPlenty = bs.balanceOfPlenty(users[1], sopWell);
assertEq(userPlenty, 38544532214605630101);


// tracks user plenty after update
bs.mow(users[1], sopWell);
SiloGettersFacet.AccountSeasonOfPlenty memory userSop = siloGetters.balanceOfSop(users[1]);
Expand Down
2 changes: 0 additions & 2 deletions protocol/test/foundry/utils/LibAltC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pragma solidity ^0.8.20;
* Only contains address constants that diverge from actual Beanstalk.
*/
library LibAltC {

address constant BEANSTALK = 0x00F84c1cF4Ca7fa8A8b0Dc923DA91ACA148B865C;
address internal constant BEAN = 0x006DD9acC7cDf83128C4aDF46847c301f94406ab;

Expand All @@ -20,5 +19,4 @@ library LibAltC {

// address constant PRICE_DEPLOYER = ;
// address constant PRICE = ;

}

0 comments on commit b7562a2

Please sign in to comment.