Merge pull request #4 from jl777/dPoW

DPoW
This commit is contained in:
jl777
2016-09-14 07:02:34 -03:00
committed by GitHub
2 changed files with 15 additions and 5 deletions

View File

@@ -33,24 +33,34 @@ information or see http://opensource.org/licenses/MIT.
>>>>>>>>>>>>>>>>>>>> Komodo specific notes:
```
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python zlib1g-dev wget bsdmainutils automake
git clone https://github.com/jl777/komodo
cd komodo
./autoconf
./autogen.sh
./configure --with-incompatible-bdb --with-gui
./zcutil/fetch-params.sh
cp ~/.zcash-params/testnet3/z9* ~/.zcash-params
./zcutil/build.sh -j8 # -j8 uses 8 threads
In ~/.komodo/komodo.conf:
Create ~/.komodo/komodo.conf:
rpcuser=bitcoinrpc
rpcpassword=6cPEhaAvRk6w5MPAopJJbjucKRyDCapqC1JWzx15zLH2
rpcpassword=password
addnode="5.9.102.210"
addnode="78.47.196.146"
Start mining:
komodo/src/komodod -gen=1 -genproclimit=1
komodo/src/komodo-cli getinfo
```

View File

@@ -27,7 +27,7 @@ int32_t komodo_checkmsg(void *bitcoinpeer,uint8_t *data,int32_t datalen)
int32_t komodo_blockcheck(void *block)
{
fprintf(stderr,"check block %p\n",block);
//fprintf(stderr,"check block %p\n",block);
return(-1);
}