go-ethereum/vendor/github.com/ethereum/ethash
2016-10-24 18:03:02 +03:00
..
src/libethash Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
.gitignore Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
.travis.yml Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
appveyor.yml Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
CMakeLists.txt Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
ethash.go Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
ethash_opencl.go Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
ethash_opencl_kernel_go_str.go Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
ethashc.go Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
Makefile Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
MANIFEST.in Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
README.md Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
setup.py Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00
Vagrantfile Godeps, vendor: convert dependency management to trash 2016-10-24 18:03:02 +03:00

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 :)