├── .gitignore ├── .hindent.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── haskoin-node.cabal ├── hie.yaml ├── package.yaml ├── scripts └── format ├── src └── Haskoin │ ├── Node.hs │ └── Node │ ├── Chain.hs │ ├── Peer.hs │ └── PeerMgr.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── Haskoin └── NodeSpec.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.hindent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/.hindent.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /haskoin-node.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/haskoin-node.cabal -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/hie.yaml -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/package.yaml -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/scripts/format -------------------------------------------------------------------------------- /src/Haskoin/Node.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/src/Haskoin/Node.hs -------------------------------------------------------------------------------- /src/Haskoin/Node/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/src/Haskoin/Node/Chain.hs -------------------------------------------------------------------------------- /src/Haskoin/Node/Peer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/src/Haskoin/Node/Peer.hs -------------------------------------------------------------------------------- /src/Haskoin/Node/PeerMgr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/src/Haskoin/Node/PeerMgr.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Haskoin/NodeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprupp/haskoin-node/HEAD/test/Haskoin/NodeSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | --------------------------------------------------------------------------------