Skip to content

Commit 161870d

Browse files
committed
fix: leftover error
1 parent 1ddff18 commit 161870d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

script/forge-scripts/Abstract.Deploy.Single.s.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,7 @@ abstract contract AbstractDeploySingle is BatchScript {
667667
/// @dev 8.1 - Deploy 5115Form implementation
668668
vars.erc5115Form = address(new BlastERC5115Form{ salt: salt }(vars.superRegistry));
669669
contracts[vars.chainId][bytes32(bytes("ERC5115Form"))] = vars.erc5115Form;
670+
vars.superRegistryC.setAddress(keccak256("BLAST_REWARD_DISTRIBUTOR_ADMIN"), REWARDS_ADMIN, vars.chainId);
670671
}
671672

672673
/// @dev 8.1.1 Deploy 5115 wrapper factory

script/forge-scripts/EnvironmentUtils.s.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ abstract contract EnvironmentUtils is AbstractDeploySingle {
6565
TARGET_CHAINS.push(BASE);
6666
TARGET_CHAINS.push(FANTOM);
6767
TARGET_CHAINS.push(LINEA);
68+
TARGET_CHAINS.push(BLAST);
6869

6970
if (useNewSalt) salt = "StagingV1_1";
7071
else salt = "StagingV1_0";

script/forge-scripts/misc/blast/forms/BlastBaseForm.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ import { IBlastPoints } from "script/forge-scripts/misc/blast/forms/IBlastPoints
2020
abstract contract BaseForm is IBaseForm, Initializable, ERC165 {
2121
using DataLib for uint256;
2222

23-
/// @dev Reverts if the caller is not the Blast Reward Distributor Admin
24-
error NOT_BLAST_REWARD_DISTRIBUTOR_ADMIN();
25-
2623
//////////////////////////////////////////////////////////////
2724
// CONSTANTS //
2825
//////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)