From 37c38a073d6395a2be9a95193bfab2156f4adf3d Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 14 Sep 2016 06:52:21 -0300 Subject: [PATCH 1/4] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f442af8e..586915a5a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ information or see http://opensource.org/licenses/MIT. 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 From 93fa88941949baa0c2f513bf18f6ea048d63ad81 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 14 Sep 2016 06:54:45 -0300 Subject: [PATCH 2/4] docs --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 586915a5a..9af3cba4d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,11 @@ 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 ./autogen.sh From 24522e1d2a87d62f9d38c98521124dfecb69978d Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 14 Sep 2016 06:57:06 -0300 Subject: [PATCH 3/4] print remove --- README.md | 7 ++----- src/komodo.h | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9af3cba4d..2449d73df 100644 --- a/README.md +++ b/README.md @@ -33,11 +33,8 @@ 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 - +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 ./autogen.sh diff --git a/src/komodo.h b/src/komodo.h index 8d56c0a8c..8a6179a6f 100644 --- a/src/komodo.h +++ b/src/komodo.h @@ -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); } From 0032bbb5913d28cf93f36b6502d110a68a038e14 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 14 Sep 2016 07:00:35 -0300 Subject: [PATCH 4/4] formatting --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2449d73df..8bcf1d1ec 100644 --- a/README.md +++ b/README.md @@ -33,25 +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 + ./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 - +```