Skip to content

Commit

Permalink
Correctly ordered arguments in typed_args (#2174)
Browse files Browse the repository at this point in the history
* Correctly ordered arguments in `typed_args`

* Set Version: 1.0.357

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
palinatolmach and devops authored Nov 15, 2023
1 parent 0475fa5 commit 449fbfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.356"
version = "1.0.357"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.356'
VERSION: Final = '1.0.357'
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/kevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def intlist(ints: list[KInner]) -> KApply:
@staticmethod
def typed_args(args: list[KInner]) -> KInner:
res = KEVM.empty_typedargs()
return build_cons(res, '_,__EVM-ABI_TypedArgs_TypedArg_TypedArgs', reversed(args))
return build_cons(res, '_,__EVM-ABI_TypedArgs_TypedArg_TypedArgs', args)

@staticmethod
def accounts(accts: list[KInner]) -> KInner:
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.356
1.0.357

0 comments on commit 449fbfa

Please sign in to comment.