Skip to content

Commit cc9afb7

Browse files
authored
exec_init: stop appending the storageLayout to foundry.toml (#910)
1 parent 6302093 commit cc9afb7

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/kontrol/foundry.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,8 @@
5151
from .state_record import RecreateState, StateDiffEntry, StateDumpEntry
5252
from .utils import (
5353
_read_digest_file,
54-
append_to_file,
5554
empty_lemmas_file_contents,
5655
ensure_name_is_unique,
57-
foundry_toml_extra_contents,
5856
kontrol_file_contents,
5957
kontrol_toml_file_contents,
6058
kontrol_up_to_date,
@@ -1523,7 +1521,6 @@ def init_project(project_root: Path, *, skip_forge: bool) -> None:
15231521
write_to_file(root / 'lemmas.k', empty_lemmas_file_contents())
15241522
write_to_file(root / 'KONTROL.md', kontrol_file_contents())
15251523
write_to_file(root / 'kontrol.toml', kontrol_toml_file_contents())
1526-
append_to_file(root / 'foundry.toml', foundry_toml_extra_contents())
15271524
run_process_2(
15281525
['forge', 'install', '--no-git', 'runtimeverification/kontrol-cheatcodes'],
15291526
logger=_LOGGER,

src/kontrol/utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,6 @@ def kontrol_toml_file_contents() -> str:
261261
"""
262262

263263

264-
def foundry_toml_extra_contents() -> str:
265-
return """
266-
extra_output = ['storageLayout']
267-
"""
268-
269-
270264
def foundry_toml_cancun_schedule() -> str:
271265
return """
272266
evm_version = "cancun"

0 commit comments

Comments
 (0)