Right now I can't get the blake hash to work properly... for some reason...
Trying now to check whether it is an endianness error...
(BlueDragon747... why oh why did you use blake hash for the checksum... D:)
at the time it made sense to use a faster hash for as much of the wallet hashing as possible
in Blakecoin you get about three blake256(checksum) per sha256(sha256(checksum)) so it makes sense to use it but the cost is compatibility with the Bitcoin/Litecoin software
are you using pure python blake8.py that kramble has modded or the python pow module?
Oh? There's a python module? thank god :collapses:
I tried making a C extension (like the litecoin_scrypt module for scrypt) from the blakecoin code and spent the entire day doing it...
Is there a link to blake8.py?
pure python blake8.py (no need to install)
https://github.com/kramble/FPGA-Blakecoin-Miner/tree/master/MiningSoftware/blake_python
example usage:
from blake8 import BLAKE as BLAKE
BLAKE(256).digest(DataToBeHashed)
C extension pow module (need to install)
https://github.com/BlueDragon747/Blakecoin_Python_POW_Module
example usage:
import blake_hash
blake_hash.getPoWHash(DataToBeHashed)
the pure python blake8.py is best for my testing but both work