Skip to content

Commit

Permalink
Remove imports
Browse files Browse the repository at this point in the history
  • Loading branch information
zoep committed Dec 15, 2024
1 parent e17833f commit 17252f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Act/CLI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ bytecodes cid src = do
json <- solc Solidity src
let (Contracts sol', _, _) = fromJust $ readStdJSON json
let err = error $ "Cannot find Solidity contract " <> Text.unpack cid
pure $ ((fromMaybe err . Map.lookup ("hevm.sol" <> ":" <> cid) $ sol').creationCode,
(fromMaybe err . Map.lookup ("hevm.sol" <> ":" <> cid) $ sol').runtimeCode)
pure ((fromMaybe err . Map.lookup ("hevm.sol" <> ":" <> cid) $ sol').creationCode,
(fromMaybe err . Map.lookup ("hevm.sol" <> ":" <> cid) $ sol').runtimeCode)



Expand Down
1 change: 0 additions & 1 deletion src/Act/Coq.hs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import EVM.ABI
import Act.Syntax
import Act.Syntax.Annotated

import Debug.Trace
type Fresh = State Int

header :: T.Text
Expand Down

0 comments on commit 17252f9

Please sign in to comment.