We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b105a commit d843ac7Copy full SHA for d843ac7
src/rollup/RollupCreator.sol
@@ -188,6 +188,14 @@ contract RollupCreator is Ownable {
188
})
189
);
190
191
+ // Setting batch posters and batch poster manager
192
+ for (uint256 i = 0; i < deployParams.batchPosters.length; i++) {
193
+ bridgeContracts.sequencerInbox.setIsBatchPoster(deployParams.batchPosters[i], true);
194
+ }
195
+ if (deployParams.batchPosterManager != address(0)) {
196
+ bridgeContracts.sequencerInbox.setBatchPosterManager(deployParams.batchPosterManager);
197
198
+
199
// Call setValidator on the newly created rollup contract just if validator set is not empty
200
if (deployParams.validators.length != 0) {
201
bool[] memory _vals = new bool[](deployParams.validators.length);
0 commit comments