plugeth/Godeps/_workspace/src/github.com/ethereum/ethash
2015-06-17 00:56:25 +02:00
..
cmake/modules Update ethash lib 2015-03-24 15:51:51 +01:00
cryptopp Updated ethash 2015-03-14 16:42:05 +01:00
js updated ethash 2015-03-25 14:58:12 +01:00
src Update ethash Godep 2015-06-16 12:09:39 +02:00
test Update ethash Godep 2015-06-16 12:09:39 +02:00
.gitignore Updated ethash 2015-03-14 16:42:05 +01:00
.travis.yml Update ethash Godeps files 2015-05-05 07:50:04 +02:00
appveyor.yml Update ethash Godeps files 2015-05-05 07:50:04 +02:00
CMakeLists.txt Update ethash Godep 2015-06-16 12:09:39 +02:00
ethash_test.go Update ethash Godep (again) 2015-06-17 00:56:25 +02:00
ethash.go Update ethash Godep (again) 2015-06-17 00:56:25 +02:00
ethashc.go Update ethash deps (more build fixes, tests) 2015-05-07 19:39:55 +02:00
Makefile Updated ethash 2015-03-14 16:42:05 +01:00
MANIFEST.in Updated ethash 2015-03-14 16:42:05 +01:00
README.md Update ethash Godeps files 2015-05-05 07:50:04 +02:00
setup.py Update ethash Godeps files 2015-05-05 07:50:04 +02:00
Vagrantfile Godeps: bump github.com/ethereum/ethash 2015-03-06 12:28:00 +00: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 :)