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

Extract communication independent parts from Direct chain #376

Merged
3 commits merged into from
Jun 2, 2022
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
3 changes: 1 addition & 2 deletions hydra-cluster/test/Test/DirectChainSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@ import Hydra.Chain (
PostTxError (..),
)
import Hydra.Chain.Direct (
DirectChainLog,
IntersectionNotFoundException,
closeGraceTime,
withDirectChain,
withIOManager,
)
import Hydra.Chain.Direct.Handlers (DirectChainLog, closeGraceTime)
import Hydra.Crypto (aggregate, generateSigningKey, sign)
import qualified Hydra.Crypto as Hydra
import Hydra.Ledger (IsTx (..))
Expand Down
2 changes: 1 addition & 1 deletion hydra-cluster/test/Test/EndToEndSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import Hydra.Cardano.Api (
serialiseAddress,
unSlotNo,
)
import Hydra.Chain.Direct (closeGraceTime)
import Hydra.Chain.Direct.Handlers (closeGraceTime)
import Hydra.Crypto (deriveVerificationKey, generateSigningKey)
import qualified Hydra.Crypto as Hydra
import Hydra.Ledger (txId)
Expand Down
1 change: 1 addition & 0 deletions hydra-node/hydra-node.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ library
Hydra.Chain.CardanoClient
Hydra.Chain.Direct
Hydra.Chain.Direct.Context
Hydra.Chain.Direct.Handlers
Hydra.Chain.Direct.State
Hydra.Chain.Direct.Tx
Hydra.Chain.Direct.Util
Expand Down
Loading