Implement novacoin mining support
authorMASM fan <masmfan@gmail.com>
Wed, 12 Feb 2014 21:22:57 +0000 (01:22 +0400)
committerMASM fan <masmfan@gmail.com>
Wed, 12 Feb 2014 21:22:57 +0000 (01:22 +0400)
commitb5680339cfe87714542796b016226eb455560214
tree5012bb91f200b2e8658031ddee3f15a09d6cb159
parent23ebc8506325ec4b8a60ce3c49cab96ae87c006b
Implement novacoin mining support

* Add timestamp field serialization and deserialization for coinbase;
* Add empty signature field for block;
* Switch proof-of-work algorithm to scrypt;
* Add installation notes.
19 files changed:
INSTALL [new file with mode: 0644]
LICENSE
README.md
conf/config_sample.py
lib/bitcoin_rpc.py
lib/block_template.py
lib/block_updater.py
lib/coinbaser.py
lib/coinbasetx.py
lib/halfnode.py
lib/template_registry.py
lib/util.py
litecoin_scrypt/scrypt.c [new file with mode: 0644]
litecoin_scrypt/scrypt.h [new file with mode: 0644]
litecoin_scrypt/scryptmodule.c [new file with mode: 0644]
litecoin_scrypt/setup.py [new file with mode: 0644]
mining/__init__.py
mining/service.py
scripts/blocknotify.sh