Files
linea-monorepo/contracts/src/_testing/unit/rollup/TestLineaRollupV5.sol
Victorien Gauch d9353756ee Fix: update contracts folder structure (#420)
* fix: update contracts folder structure

* fix: update contracts documentation

* fix: regenerate docs

* fix: remove .md file in solidity docs folder

* fix: rename Utils contract + update autoupdate script

* fix: update solidity doc

* fix: clean test contracts folder structure

* fix: clean test folder structure

* fix: update autoupdate.sh script

* fix: update solcover file

* fix: remove static nonce in LineaRollup test

* Merge branch 'main' into fix/399-update-contracts-folder-structure

* remove files in merge conflict

* fix prover reference for Mimc.sol

* fix: update docs

* fix: remove unused files

* point to correct folders in readmes

---------

Co-authored-by: thedarkjester <grant.southey@consensys.net>
2025-01-29 10:32:31 +01:00

15 lines
430 B
Solidity

// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.24;
import { LineaRollupV5 } from "../../integration/LineaRollupV5.sol";
contract TestLineaRollupV5 is LineaRollupV5 {
function setDefaultShnarfExistValue(bytes32 _shnarf) external {
shnarfFinalBlockNumbers[_shnarf] = 1;
}
function setRollingHash(uint256 _messageNumber, bytes32 _rollingHash) external {
rollingHashes[_messageNumber] = _rollingHash;
}
}