├── .Dockerignore ├── .editorconfig ├── .env ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── core ├── block.go ├── blockchain.go └── server.go ├── errors ├── handlers.go └── handlers_test.go ├── hashing ├── hashing.go └── hashing_test.go ├── identity ├── generate.go └── generate_test.go ├── main.go ├── p2p ├── discovery.go ├── peers.go ├── root.go └── streams.go └── renovate.json /.Dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/.Dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/README.md -------------------------------------------------------------------------------- /core/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/core/block.go -------------------------------------------------------------------------------- /core/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/core/blockchain.go -------------------------------------------------------------------------------- /core/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/core/server.go -------------------------------------------------------------------------------- /errors/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/errors/handlers.go -------------------------------------------------------------------------------- /errors/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/errors/handlers_test.go -------------------------------------------------------------------------------- /hashing/hashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/hashing/hashing.go -------------------------------------------------------------------------------- /hashing/hashing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/hashing/hashing_test.go -------------------------------------------------------------------------------- /identity/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/identity/generate.go -------------------------------------------------------------------------------- /identity/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/identity/generate_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/main.go -------------------------------------------------------------------------------- /p2p/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/p2p/discovery.go -------------------------------------------------------------------------------- /p2p/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/p2p/peers.go -------------------------------------------------------------------------------- /p2p/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/p2p/root.go -------------------------------------------------------------------------------- /p2p/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/p2p/streams.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x249/elections-blockchain/HEAD/renovate.json --------------------------------------------------------------------------------