├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── fetchd.py ├── requirements.txt └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/btcrelay-fetchd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/btcrelay-fetchd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/btcrelay-fetchd/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /fetchd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/btcrelay-fetchd/HEAD/fetchd.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/btcrelay-fetchd/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E302 3 | max-line-length = 160 4 | --------------------------------------------------------------------------------