quorum/vendor/github.com/ethereum/ethash
Péter Szilágyi d4fd06c3dc
all: blidly swap out glog to our log15, logs need rework
2017-02-23 12:16:44 +02:00
..
src/libethash Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
CMakeLists.txt Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
MANIFEST.in Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
Makefile Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
README.md Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
Vagrantfile Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
appveyor.yml Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
ethash.go all: blidly swap out glog to our log15, logs need rework 2017-02-23 12:16:44 +02:00
ethashc.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
setup.py Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00

README.md

Build Status Windows Build Status

Ethash

For details on this project, please see the Ethereum wiki: https://github.com/ethereum/wiki/wiki/Ethash

Coding Style for C++ code:

Follow the same exact style as in cpp-ethereum

Coding Style for C code:

The main thing above all is code consistency.

  • Tabs for indentation. A tab is 4 spaces
  • Try to stick to the K&R, especially for the C code.
  • Keep the line lengths reasonable. No hard limit on 80 characters but don't go further than 110. Some people work with multiple buffers next to each other. Make them like you :)