Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.313
7.1.318
2 changes: 1 addition & 1 deletion deps/kevm_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.895
1.0.896
28 changes: 14 additions & 14 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
rv-nix-tools.url = "github:runtimeverification/rv-nix-tools/854d4f05ea78547d46e807b414faad64cea10ae4";
nixpkgs.follows = "rv-nix-tools/nixpkgs";

kevm.url = "github:runtimeverification/evm-semantics/v1.0.895";
kevm.url = "github:runtimeverification/evm-semantics/v1.0.896";
kevm.inputs.nixpkgs.follows = "nixpkgs";

k-framework.follows = "kevm/k-framework";
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = "Foundry integration for KEVM"
requires-python = "~=3.10"
dependencies = [
"kevm-pyk@git+https://github.com/runtimeverification/evm-semantics.git@v1.0.895#subdirectory=kevm-pyk",
"kevm-pyk@git+https://github.com/runtimeverification/evm-semantics.git@v1.0.896#subdirectory=kevm-pyk",
"eth-utils>=5,<6",
"pycryptodome>=3.20.0,<4",
"pyevmasm>=0.2.3,<0.3",
Expand Down
8 changes: 4 additions & 4 deletions src/kontrol/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from pyk.cli.pyk import parse_toml_args
from pyk.cterm.symbolic import CTermSMTError
from pyk.telemetry import emit_event

from . import VERSION
from .cli import _create_argument_parser, generate_options, get_argument_type_setter, get_option_string_destination
Expand Down Expand Up @@ -36,7 +37,6 @@
read_recorded_state_dump,
recorded_state_to_account_cells,
)
from .telemetry import _emit_event
from .utils import (
_LOG_FORMAT,
_rv_blue,
Expand Down Expand Up @@ -170,7 +170,7 @@ def exec_build(options: BuildOptions) -> None:
def exec_prove(options: ProveOptions) -> None:
_LOGGER.debug(options)

_emit_event(
emit_event(
'kontrol_prove_start',
{
'reinit': options.reinit,
Expand Down Expand Up @@ -207,7 +207,7 @@ def exec_prove(options: ProveOptions) -> None:
init_accounts=init_accounts,
)
except CTermSMTError as err:
_emit_event(
emit_event(
'kontrol_prove_smt_error',
{
'smt_timeout': options.smt_timeout,
Expand Down Expand Up @@ -250,7 +250,7 @@ def exec_prove(options: ProveOptions) -> None:
print(f'The proof cannot be completed while there are refuted nodes: {refuted_nodes}.')
print('Either unrefute the nodes or discharge the corresponding refutation subproofs.')

_emit_event(
emit_event(
'kontrol_prove_complete',
{
'total_proofs': len(results),
Expand Down
71 changes: 0 additions & 71 deletions src/kontrol/telemetry.py

This file was deleted.

Loading
Loading