Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ArbOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ interface ArbOwner {
/// @notice Sets the max amount of stylus contract fragments that can be used to deploy a stylus contract
/// @notice Available in ArbOS version 60 and above
function setMaxStylusContractFragments(
uint16 maxFragments
uint8 maxFragments
) external;

/// Emitted when a successful call is made to this precompile
Expand Down
2 changes: 1 addition & 1 deletion ArbOwnerPublic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ interface ArbOwnerPublic {

/// @notice Get the max amount of stylus contract fragments that can be used to deploy a stylus contract
/// @notice Available in ArbOS version 60 and above
function getMaxStylusContractFragments() external view returns (uint16);
function getMaxStylusContractFragments() external view returns (uint8);

event ChainOwnerRectified(address rectifiedOwner);
}