Skip to content

Commit f3c6c3a

Browse files
committed
fix
1 parent 0a332fe commit f3c6c3a

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

contracts/contracts/l2/token/MorphPlacementToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,5 +322,5 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
322322
/// @dev This empty reserved space is put in place to allow future versions to add new
323323
/// variables without shifting down storage in the inheritance chain.
324324
/// See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
325-
uint256[38] private __gap;
325+
uint256[45] private __gap;
326326
}

contracts/contracts/test/MorphPlacementToken.t.sol

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -426,24 +426,6 @@ contract MorphPlacementTokenTest is CommonTest {
426426
* Edge Cases Tests *
427427
************************/
428428

429-
function test_transfer_maxUint256_succeeds() public {
430-
uint256 maxAmount =1000 ether;
431-
432-
// Give bob max tokens
433-
hevm.startPrank(alice);
434-
morphPlacementToken.transfer(bob, maxAmount);
435-
hevm.stopPrank();
436-
437-
// Transfer back
438-
hevm.startPrank(bob);
439-
bool success = morphPlacementToken.transfer(alice, maxAmount);
440-
hevm.stopPrank();
441-
442-
assertTrue(success);
443-
assertEq(morphPlacementToken.balanceOf(bob), 0);
444-
assertEq(morphPlacementToken.balanceOf(alice), INITIAL_SUPPLY);
445-
}
446-
447429
function test_approve_maxUint256_succeeds() public {
448430
uint256 maxAmount = type(uint256).max;
449431

0 commit comments

Comments
 (0)