Skip to content

Commit

Permalink
Fixing messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ACassimiro committed Aug 23, 2024
1 parent 9f9d54b commit 2fbfecc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-lite/src/rust_lite/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main() -> None:
stripped_args = toml_args | {
key: val for (key, val) in vars(args).items() if val is not None and not (isinstance(val, Iterable) and not val)
}
print(stripped_args)

options = generate_options(stripped_args)

executor_name = 'exec_' + args.command.lower().replace('-', '_')
Expand All @@ -57,7 +57,7 @@ def exec_run(options: RunOptions) -> None:

module_manager.load_program(contract_path)

print('Program loaded; Trying to fetch the content of the K cell.')
print('Performed all possible rewriting operations; Trying to fetch the content of the K cell.')

module_manager.fetch_k_cell_content()

Expand Down
2 changes: 2 additions & 0 deletions rust-lite/src/rust_lite/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def load_program(self, program_path: str) -> None:


def fetch_k_cell_content(self):
print('--------------------------------------------------')
print('K CELL CONTENTS: ')
cell = self.cterm.cell('K_CELL')
_PPRINT.pprint(cell)
return cell
Expand Down

0 comments on commit 2fbfecc

Please sign in to comment.