Skip to content

Commit

Permalink
drop trucante_limit in storage dump
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberthirst committed Dec 15, 2024
1 parent f2c883b commit dcdbcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa/contracts/vyper/vyper_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def dump(self):
ret = FrameDetail("storage")

for k, v in vars(self).items():
t = v.get(truncate_limit=1024)
t = v.get()
if t is None:
t = "<truncated>" # too large, truncated
ret[k] = t
Expand Down

0 comments on commit dcdbcc6

Please sign in to comment.