Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ahangsu committed Nov 22, 2022
1 parent c7b1314 commit eee8381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyteal/ast/abi/type.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, spec: TypeSpec) -> None:
assert proto.mem_layout
local_types = proto.mem_layout.local_stack_types

if len(local_types) <= 128:
if len(local_types) <= 127:
local_types.append(self._type_spec.storage_type())
self._stored_value = FrameVar(proto, len(local_types) - 1)
return
Expand Down

0 comments on commit eee8381

Please sign in to comment.