Skip to content
Closed
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
6 changes: 1 addition & 5 deletions src/mocks/ScrollChainMockBlob.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract ScrollChainMockBlob is ScrollChain {
address _messageQueueV2,
address _verifier,
address _system
) ScrollChain(_chainId, _messageQueueV1, _messageQueueV2, _verifier, address(_system)) {}
) ScrollChain(_chainId, _messageQueueV1, _messageQueueV2, _verifier, _system) {}

/**********************
* Internal Functions *
Expand Down Expand Up @@ -48,10 +48,6 @@ contract ScrollChainMockBlob is ScrollChain {
overrideBatchHashCheck = status;
}

function _getBlobVersionedHash() internal virtual override returns (bytes32 _blobVersionedHash) {
_blobVersionedHash = blobhashes[0];
}

function _getBlobVersionedHash(uint256 index) internal virtual override returns (bytes32 _blobVersionedHash) {
_blobVersionedHash = blobhashes[index];
}
Expand Down