Skip to content

Commit

Permalink
Merge pull request #365 from ethereum/rename-storage
Browse files Browse the repository at this point in the history
Rename "store:" to "storage:"
  • Loading branch information
d-xo authored Aug 29, 2023
2 parents 3c7e719 + e0ac300 commit f9615f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EVM/Format.hs
Original file line number Diff line number Diff line change
Expand Up @@ -649,13 +649,13 @@ formatExpr = go
]

-- Stores
SLoad slot store -> T.unlines
SLoad slot storage -> T.unlines
[ "(SLoad"
, indent 2 $ T.unlines
[ "slot:"
, indent 2 $ formatExpr slot
, "store:"
, indent 2 $ formatExpr store
, "storage:"
, indent 2 $ formatExpr storage
]
, ")"
]
Expand Down

0 comments on commit f9615f7

Please sign in to comment.