Skip to content

Commit

Permalink
exec_init: stop appending the storageLayout to foundry.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
anvacaru committed Dec 10, 2024
1 parent 6302093 commit 976ce93
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/kontrol/foundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@
from .state_record import RecreateState, StateDiffEntry, StateDumpEntry
from .utils import (
_read_digest_file,
append_to_file,
empty_lemmas_file_contents,
ensure_name_is_unique,
foundry_toml_extra_contents,
kontrol_file_contents,
kontrol_toml_file_contents,
kontrol_up_to_date,
Expand Down Expand Up @@ -1523,7 +1521,6 @@ def init_project(project_root: Path, *, skip_forge: bool) -> None:
write_to_file(root / 'lemmas.k', empty_lemmas_file_contents())
write_to_file(root / 'KONTROL.md', kontrol_file_contents())
write_to_file(root / 'kontrol.toml', kontrol_toml_file_contents())
append_to_file(root / 'foundry.toml', foundry_toml_extra_contents())
run_process_2(
['forge', 'install', '--no-git', 'runtimeverification/kontrol-cheatcodes'],
logger=_LOGGER,
Expand Down
6 changes: 0 additions & 6 deletions src/kontrol/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,6 @@ def kontrol_toml_file_contents() -> str:
"""


def foundry_toml_extra_contents() -> str:
return """
extra_output = ['storageLayout']
"""


def foundry_toml_cancun_schedule() -> str:
return """
evm_version = "cancun"
Expand Down

0 comments on commit 976ce93

Please sign in to comment.