This commit is contained in:
Dmitry Zuikov 2023-01-13 10:09:25 +03:00
parent 0ebfe367b0
commit cda69cacce
3 changed files with 12 additions and 1 deletions

View File

@ -64,14 +64,16 @@ library
exposed-modules: exposed-modules:
, HBS2.Defaults , HBS2.Defaults
, HBS2.Clock
, HBS2.Data.Types , HBS2.Data.Types
, HBS2.Data.Types.Refs , HBS2.Data.Types.Refs
, HBS2.Hash , HBS2.Hash
, HBS2.Merkle , HBS2.Merkle
, HBS2.Clock , HBS2.Net.Proto
, HBS2.Prelude , HBS2.Prelude
, HBS2.Prelude.Plated , HBS2.Prelude.Plated
, HBS2.Storage , HBS2.Storage
, HBS2.Net.Proto.Actors.BlockInfo
-- other-modules: -- other-modules:

View File

@ -0,0 +1,6 @@
module HBS2.Net.Proto where
import Data.Hashable
class (Hashable a, Eq a) => IsPeer a where

View File

@ -0,0 +1,3 @@
module HBS2.Net.Proto.Actors.BlockInfo where