Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated export list #368

Merged
merged 3 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
- A transaction option to choose which UTxOs can be spent for balancing
- Lenses for the fields of `TxOpts`
- [Cheatsheet](doc/CHEATSHEET.md)
- API now exposes: `Cooked.Tweak.ValidityRange`, `interpretAndRun`,
`interpretAndRunWith`, `runTweak`, `runTweakFrom` and `datumHijackingTarget`

### Removed

Expand Down
2 changes: 1 addition & 1 deletion src/Cooked/Attack.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Cooked.Attack (module X) where

import Cooked.Attack.AddToken as X
import Cooked.Attack.DatumHijacking as X hiding (datumHijackingTarget)
import Cooked.Attack.DatumHijacking as X
import Cooked.Attack.DoubleSat as X
import Cooked.Attack.DupToken as X
4 changes: 0 additions & 4 deletions src/Cooked/MockChain.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import Cooked.MockChain.Staged as X hiding
( MockChainLog,
MockChainLogEntry,
StagedMockChain,
interpretAndRun,
interpretAndRunWith,
runTweak,
runTweakFrom,
)
import Cooked.MockChain.Testing as X
import Cooked.MockChain.UtxoSearch as X
Expand Down
1 change: 1 addition & 0 deletions src/Cooked/Tweak.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ import Cooked.Tweak.Labels as X
import Cooked.Tweak.OutPermutations as X hiding (distinctPermutations)
import Cooked.Tweak.Signers as X
import Cooked.Tweak.TamperDatum as X
import Cooked.Tweak.ValidityRange as X
2 changes: 1 addition & 1 deletion src/Cooked/Tweak/ValidityRange.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module Cooked.Tweak.ValidityRange where

import Control.Monad (guard, void)
import Cooked (awaitSlot, currentSlot)
import Cooked.MockChain (awaitSlot, currentSlot)
import Cooked.Skeleton (txSkelValidityRangeL)
import Cooked.Tweak.Common (MonadTweak, setTweak, viewTweak)
import Ledger.Slot (Slot (Slot), SlotRange)
Expand Down
Loading