Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DPoW #33

Merged
merged 7 commits into from
Oct 4, 2016
Merged

DPoW #33

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ pico komodo.conf

rpcuser=bitcoinrpc
rpcpassword=password
txindex=1
addnode=5.9.102.210
addnode=78.47.196.146
addnode=178.63.69.164
Expand All @@ -87,17 +88,30 @@ Start mining
```
cd ~
cd komodo
#This starts komodo as a process - replace genproclimit with number of threads you want to use:
./src/komodod -gen=1 -genproclimit=1 &

#To start the daemon to get wallet addres and pubkey
./src/komodod -gen -genproclimit=2 &

#This will give you your wallet address
./src/komodo-cli listreceivedbyaddress 0 true

#This will return your pubkey eg. "0259e137e5594cf8287195d13aed816af75bd5c04ae673296b51f66e7e8346e8d8" for your address
./src/komodo-cli validateaddress RJeXg8vtvyC5vmB1WGsPnbHH4C6HLY42BK

#To stop the daemon:
./src/komodo-cli stop

#This starts komodo notary - replace genproclimit with number of threads you want to use
./src/komodod -gen -genproclimit=2 -notary -pubkey="0259e137e5594cf8287195d13aed816af75bd5c04ae673296b51f66e7e8346e8d8" &

#This will get the stats:
./src/komodo-cli getinfo

#To view the process:
ps -ef | grep komodod

#Once you have the process number (eg 25567) you can type the following to kill komodo mining:
kill 25567
#To stop the daemon:
./src/komodo-cli stop

#To view komodod output:
tail -f ~/.komodo/debug.log
Expand Down