mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* 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>
15 lines
430 B
Solidity
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;
|
|
}
|
|
}
|