mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Péter Szilágyi
d4fd06c3dc
|
8 years ago | |
---|---|---|
.. | ||
src/libethash | 8 years ago | |
CMakeLists.txt | 8 years ago | |
MANIFEST.in | 8 years ago | |
Makefile | 8 years ago | |
README.md | 8 years ago | |
Vagrantfile | 8 years ago | |
appveyor.yml | 8 years ago | |
ethash.go | 8 years ago | |
ethashc.go | 8 years ago | |
setup.py | 8 years ago |
README.md
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 :)