This guide is a continuation from Part 1 - https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-builder-s-guide-part-1. Part 1 describes how to build a Windows miner from Steem source codes. If you are only interested in running a Windows build version and not interested in building one. You can ignore Part1. Edit: User is asking for zip instead of rar file. Winziped file is provided. WinRAR is no longer needed. Edit2: One of the links was not working. It is fixed. Dependencies ------------- #### <i class="icon-right-hand"></i> If you built your own binary using Part 1 of this guide Download the following software: | <i class="icon-down-circled"></i>Steem Runtime Components | Link | --------------------------------------------- | ------------------ |runtimeparts.zip | https://mega.nz/#!idoEHABY!SGv8nAaUJMUVLVcwQJthGywIJ2jr28HN1ehhPNaTz0g | |blockchain.zip (optional) | https://mega.nz/#!TFYzxApT!pKkGH0SxyErx1rnwA-eEYlDIIOu3DHv6VVAtNN4cJeg | ``` > Download and instal Win RAR > Create a folder, say L:\mine > Copy L:\build\programs\steemd\Release\steemd.exe to L:\mine > Copy L:\build\programs\cli_wallet\Release\cli_wallet.exe to L:\mine > Extract the files in runtimeparts.rar to L:\mine > Extract the files in blockchain.zip to L:\mine\stm ``` > <i class="icon-file"></i>**Note:** > - Downloading the blockchain.zip is optional. But it helps because it saves you time from syncing. The blockchain is cloned on 6 July 2016. #### <i class="icon-right-hand"></i> If you do not wish to build your own binary Download the following software: | <i class="icon-down-circled"></i>Steem Runtime Components | Link | --------------------------------------------- | ------------------ |Visual C++ Redistributable Packages for Visual Studio 2013 | https://www.microsoft.com/en-us/download/details.aspx?id=40784 | |Steem Windows Build (aka CLI Tools) cli-tools-085b.zip | https://github.com/btscube/steem/releases | |blockchain.zip (optional) | https://mega.nz/#!TFYzxApT!pKkGH0SxyErx1rnwA-eEYlDIIOu3DHv6VVAtNN4cJeg | [<img src="https://i.imgsafe.org/c88d8024bd.png">] ``` > Download and install both the Microsoft C++ Redistributable > Download and instal Win RAR > Create a folder, say L:\mine > Go to the latest release, download the "Steem Windows Build", also known as "CLI Tools". In this example, download "cli-tools-085b.zip" > Extract the files in cli-tools-085b.zip to L:\mine > Extract the files in blockchain.zip to L:\mine\stm ``` > <i class="icon-file"></i>**Note:** > - Downloading the blockchain.zip is optional. But it helps because it saves you time from syncing. The blockchain is cloned on 6 July 2016. > - In this example, we are using the L drive. You may use C:\ drive or D:\ drive if you do not have a L:\ drive #### <i class="icon-right-hand"></i> Running Steemd for the first time ``` > Open a new Command Prompt window >cd L:\mine >steemd -d L:\mine\stm --rpc-endpoint ``` [<img src="https://i.imgsafe.org/c9257a0b98.png">] > <i class="icon-file"></i>**Note:** > The "-d" parameter specifies the location path to store the blockchain and configuration files. In this example, we choose L:\mine\stm to store them. > The "--rpc-endpoint" is to let the cli_wallet.exe (to be run later) to communicate with steemd. > You will see this error "Error parsing logging config from config file L:\stm2\stm\config.ini, using default config". You can safely ignore it. steemd will attempt to download the latest blocks from the network. We leave this command prompt windows running and wait for steemd to be fully in synced with the latest block. We will now run cli_wallet to check the status of the blockchain syncing. ``` > Open a new Command Prompt window >cd L:\mine >cli_wallet.exe > You will see a "new >>>" prompt ``` Now, let's check the steem version to be sure we are running the latest software. [<img src="https://i.imgsafe.org/c946761307.png">] ``` > At the cli_wallet "new >>>" prompt, type about ``` We will wait for steem to sync all the blocks. You can type "info" at the cli_wallet prompt to check. Check that the head_block_age is a few seconds old. [<img src="https://i.imgsafe.org/c961ec78d0.png">] > <i class="icon-file"></i>**Note:** > - If you see "head_block_age" specify a time in the future, it means you need to synchronise your computer's clock with a internet time server. ---------- Configure and prepare your mining account ------------- #### <i class="icon-right-hand"></i>Get a new mining account ready Once the steemd is synced, we are ready to prepare a new mining account. But first check if the account name is taken up. Let's say we want to create an account named "bitcube" ``` > At the cli_wallet "new >>>" get_account bitcube ``` [<img src="https://i.imgsafe.org/c979c5c517.png">] From the above screenshot, you can see "id: 2.2.880" and "name: bitcube". So account bitcube is taken up. Let's try something very different, say 'supersteemminer' ``` > At the cli_wallet "new >>>" get_account supersteemminer ``` [<img src="https://i.imgsafe.org/c9879bc859.png">] We see that cli_wallet complains that 'Unknown account'. Great. This account is not in used. We will use it. Let's create this account then. First set a password for this new wallet. ``` > At the cli_wallet "new >>>", type set_password mypassword > The prompt will change to "locked >>>" > At the cli_wallet "locked >>>", type unlock mypassword > The prompt will change to "unlocked >>>" ``` > <i class="icon-file"></i>**Note:** > - "mypassword" is just an example. Do make sure you use a real password and remember it! If you forget the password, you will lose access to this wallet. All new account need a pair of public and private keys. Let's generate the two keys. ``` > At the cli_wallet "unlocked >>>", type suggest_brain_key ``` [<img src="https://i.imgsafe.org/c9b87f3b26.png">] You will see 3 keys created. The "pub_key" is the Public Key. The "wif_priv_key" is the PrivateKey. The "brain_priv_key" is the Private Brain Key. > <i class="icon-file"></i>**Note:** > - The two private keys are the keys to your account and its fund. Store them (and the public key) securely in a secret place! > - Note down the public and private keys. You can copy them to a notepad. They will be needed later to configure the miner. > - We are using this key pair for our example "wif_priv_key": "5JsMnPge4rDKAh8JRhsVVFw3nHw3fkdjbEXHXUB2TMe3qJy58V9", "pub_key": "STM4uXGcRAJmh4gxedZ1Lx3EKakXzCa4hiKksz6N7gXzArfvCmhQr" > - **BUT DO NOT use them in your actual setting. You need to generate your own keys!** #### <i class="icon-right-hand"></i>Configure your steemd for mining We need to stop steemd temporarily in order to configure it for mining. But before shutting it down, do remember to do a 'cli_wallet' info to make sure it is really in synced and up-to-date. ``` > Go to the steemd Command Prompt Window. Enter Control-C to shut it down properly. ``` [<img src="https://i.imgsafe.org/c93fec569b.png">] Now, edit the default config.ini generated. ``` > notepad L:\mine\stm\config.ini > Look out for : # P2P nodes to connect to on startup (may specify multiple times) # seed-node = Add the following: seed-node = seed.steemed.net:2001 seed-node = seed.cubeconnex.com:2001 seed-node = seed.steemed.net:2001 seed-node = steem.clawmap.com:2001 seed-node = seed.steemwitness.com:2001 seed-node = steem-seed1.abit-more.com:2001 seed-node = 185.82.203.92:2001 seed-node = 52.38.66.234:2001 seed-node = 52.37.169.52:2001 seed-node = 52.26.78.244:2001 seed-node = 192.99.4.226:2001 seed-node = 46.252.27.1:1337 seed-node = 81.89.101.133:2001 seed-node = 52.4.250.181:39705 seed-node = 85.214.65.220:2001 > Look out for : # name of witness controlled by this node (e.g. initwitness ) Add the following: witness = "supersteemminer" > Look out for : # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] ) Add the following: miner =["supersteemminer","5JsMnPge4rDKAh8JRhsVVFw3nHw3fkdjbEXHXUB2TMe3qJy58V9"] ``` > <i class="icon-file"></i>**Note:** > - We are using this key pair for our example "wif_priv_key": "5JsMnPge4rDKAh8JRhsVVFw3nHw3fkdjbEXHXUB2TMe3qJy58V9", "pub_key": "STM4uXGcRAJmh4gxedZ1Lx3EKakXzCa4hiKksz6N7gXzArfvCmhQr" >- **BUT DO NOT use them in your actual setting. You need to generate your own keys!** ``` > Save the changed config.ini file ``` You are ready for some power hashing! ---------- Let the power hashing begin! ------------------- #### <i class="icon-right-hand"></i> Restart steemd to begin mining! ``` > Go to your steemd Window >steemd.exe -d L:\mine\stm --rpc-endpoint > You will see a lot of messages. Look out for "Started witness node on a chain". ``` [<img src="https://i.imgsafe.org/ca853e08f5.png">] ``` > You will see "hash rate: 1 hps target: 29 queue: 102 estimated time to produce:" repeatedly printed for many lines. This means that steemd is in mining mode and it is syncing to the latest block. ``` Once steemd (ie the blockchain) is synced and up to date, you will start seeing your actual hash rate. A sample is shown below. [<img src="https://i.imgsafe.org/ca9ea81544.png">] Congratualtions! You are now a Steem miner. ### Further Reading - https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm - https://steemit.com/steem/@tuck-fheman/how-to-mine-steem-in-windows - https://steemit.com/steem/@arhag/compiling-steem-for-windows-on-linux-host - https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-builder-s-guide-part-1
author | bitcube |
---|---|
permlink | steem-mining-in-microsoft-windows-a-miner-s-guide-part-2 |
category | steem |
json_metadata | {"tags":["steem","steem-mining"],"image":["https://i.imgsafe.org/c88d8024bd.png","https://i.imgsafe.org/c9257a0b98.png","https://i.imgsafe.org/c946761307.png","https://i.imgsafe.org/c961ec78d0.png","https://i.imgsafe.org/c979c5c517.png","https://i.imgsafe.org/c9879bc859.png","https://i.imgsafe.org/c9b87f3b26.png","https://i.imgsafe.org/c93fec569b.png","https://i.imgsafe.org/ca853e08f5.png","https://i.imgsafe.org/ca9ea81544.png"],"links":["https://mega.nz/#!idoEHABY!SGv8nAaUJMUVLVcwQJthGywIJ2jr28HN1ehhPNaTz0g","https://www.microsoft.com/en-us/download/details.aspx?id=40784","https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm"]} |
created | 2016-07-06 07:04:06 |
last_update | 2016-07-06 07:47:18 |
depth | 0 |
children | 45 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 17.809 HBD |
curator_payout_value | 2.146 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,809 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,269 |
net_rshares | 39,679,487,771,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 5,093,426,345,821 | 100% | ||
pharesim | 0 | 7,681,175,052,101 | 100% | ||
bitcube | 0 | 2,828,202,117,658 | 100% | ||
abit | 0 | 5,176,569,616,052 | 100% | ||
liondani | 0 | 770,921,079,760 | 100% | ||
wang | 0 | 4,287,568,519,333 | 100% | ||
steem-id | 0 | 184,259,633,089 | 100% | ||
complexring | 0 | 2,068,167,914,046 | 100% | ||
steemychicken1 | 0 | 1,332,540,810,899 | 100% | ||
arhag | 0 | 5,012,525,786,920 | 100% | ||
b0y2k | 0 | 98,566,005,852 | 100% | ||
steempower | 0 | 1,016,522,282,587 | 100% | ||
pfunk | 0 | 498,204,261,845 | 100% | ||
proctologic | 0 | 14,241,321,270 | 100% | ||
tuck-fheman | 0 | 558,639,287,771 | 100% | ||
dedriss | 0 | 2,047,655,268 | 100% | ||
ash | 0 | 270,892,012,388 | 100% | ||
jabberw0cky | 0 | 6,100,716,637 | 100% | ||
yefet | 0 | 22,321,449,419 | 100% | ||
nenad-ristic | 0 | 74,042,800,564 | 100% | ||
shawn-brewer | 0 | 20,302,401,534 | 100% | ||
vato | 0 | 140,338,756,392 | 100% | ||
jamtaylor | 0 | 73,037,378,003 | 100% | ||
hipster | 0 | 729,469,341,610 | 100% | ||
spaninv | 0 | 4,702,179,346 | 100% | ||
bbqbear | 0 | 120,698,475,064 | 100% | ||
pal | 0 | 273,936,146,834 | 100% | ||
jerome-colley | 0 | 7,452,258,802 | 100% | ||
psylains | 0 | 126,095,189,679 | 100% | ||
kevinwong | 0 | 272,750,747,094 | 100% | ||
murh | 0 | 10,072,566,602 | 100% | ||
dmitry | 0 | 1,731,926,787 | 100% | ||
glib | 0 | 16,606,279,382 | 100% | ||
tinfoilfedora | 0 | 67,846,204,987 | 100% | ||
henzemi | 0 | 1,326,186,660 | 100% | ||
ranko-k | 0 | 40,614,753,220 | 100% | ||
justtryme90 | 0 | 4,715,425,493 | 100% | ||
fatjawjones | 0 | 10,589,314,735 | 100% | ||
zebbra2014 | 0 | 3,684,078,765 | 100% | ||
johnerfx | 0 | 10,301,512,784 | 100% | ||
robsteady | 0 | 42,280,350,081 | 100% | ||
syadastinasti | 0 | 13,759,942,559 | 100% | ||
stiletto | 0 | 359,680,480 | 100% | ||
intelliguy | 0 | 13,479,107,955 | 100% | ||
kenny-crane | 0 | 76,736,692,850 | 100% | ||
ratel | 0 | 25,539,202,326 | 100% | ||
will-zewe | 0 | 81,624,340,478 | 100% | ||
brandonp | 0 | 33,349,444,641 | 100% | ||
stormbringer | 0 | 451,352,451 | 100% | ||
omarb | 0 | 96,795,924,021 | 100% | ||
cheftony | 0 | 22,846,049,073 | 100% | ||
felixa | 0 | 327,606,014 | 100% | ||
mauricemikkers | 0 | 216,052,607,607 | 100% | ||
ricardopnl | 0 | 10,262,936,040 | 100% | ||
carlgetalada | 0 | 281,546,388 | 100% | ||
grittenald | 0 | 45,311,382,404 | 100% | ||
frankjones | 0 | 219,823,453 | 100% | ||
primus | 0 | 5,083,718,749 | 100% | ||
clement | 0 | 17,225,417,859 | 100% | ||
c082832 | 0 | 22,002,636,470 | 100% | ||
michaellamden68 | 0 | 241,043,754 | 100% | ||
spiry-btc | 0 | 234,391,279 | 100% | ||
ginormousdork | 0 | 257,304,808 | 100% | ||
kilrathi | 0 | 1,342,373,951 | 100% | ||
riscadox | 0 | 66,575,706 | 100% | ||
dhestwu | 0 | 234,021,858 | 100% | ||
auxon | 0 | 10,291,030,327 | 100% | ||
mgpeter | 0 | 236,702,700 | 100% | ||
mrgreen | 0 | 230,528,759 | 100% | ||
lexus083 | 0 | 267,794,825 | 100% | ||
vkoreshkoff | 0 | 11,652,058 | 100% | ||
phantomraviolis | 0 | 193,739,870 | 100% | ||
pictorians | 0 | 356,977,747 | 100% | ||
dekrypt | 0 | 493,231,679 | 100% | ||
gobbahfett | 0 | 240,659,051 | 100% | ||
toanlk89 | 0 | 240,557,892 | 100% | ||
taylormadeapps | 0 | 240,069,308 | 100% | ||
manasd | 0 | -240,004,107 | -100% | ||
duran | 0 | 239,993,247 | 100% | ||
calaber24p | 0 | 173,128,471 | 100% | ||
kellywin21 | 0 | 46,759,928 | 100% | ||
gribgo | 0 | 175,818,735 | 100% | ||
pcste | 0 | 3,247,549,990 | 100% | ||
ladeblah | 0 | 100,449,341 | 100% | ||
akronte | 0 | 109,753,147 | 100% | ||
denverliu | 0 | 228,335,590 | 100% | ||
rcmdantas | 0 | 130,328,965 | 100% | ||
mysteem | 0 | 66,685,129 | 100% | ||
psixto | 0 | 226,262,540 | 100% | ||
smailer | 0 | 114,454,703 | 100% | ||
sisters | 0 | 2,095,939,075 | 100% | ||
auxon0 | 0 | 113,457,572 | 100% | ||
ziefa | 0 | 113,350,145 | 100% | ||
sibisi666 | 0 | 60,709,719 | 100% | ||
deepmixxer | 0 | 56,740,181 | 100% | ||
jpcrypto | 0 | 53,848,617 | 100% | ||
demartini | 0 | 0 | 100% | ||
nitinchugh | 0 | 0 | 100% | ||
heejaekim | 0 | 0 | 100% |
> Go to the steemd Command Prompt Window. Enter Control-C to shut it down properly. Press only ONCE, and wait for a while, it will end by itself eventually. Otherwise you'll need to replay at next startup, which probably will take a long time.
author | abit |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t082552811z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 08:26:09 |
last_update | 2016-07-06 08:26:09 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 141,171,499,037,785 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,413 |
net_rshares | 100,449,341 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ladeblah | 0 | 100,449,341 | 100% |
how import wallet was created ic CLI to wallet in STEEMIT account?
author | adrehajiuh |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160715t222102800z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-15 22:21:18 |
last_update | 2016-07-15 22:25:51 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 62,764,206,719 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,646 |
net_rshares | 486,155,864 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adrehajiuh | 0 | 245,108,719 | 100% | ||
jrfantasma | 0 | 241,047,145 | 100% |
Hi There bitcube, Thank you for the tuto. I am starting with steem, and am setting up mining. I'd like that the mining gains I make go to my steemIt account name "anarcharos" ....l the keys I got in my steemit account are: "Posting","active","memo","owner" ......but the keys generated by the steemd wallet are"public" "private" and "brain" .....wich key should I use to ensure the funds go to my anarcharos account in steemIt ? Also the config file requires a : # WIF PRIVATE KEY to be used by one or more witnesses or miners # private-key = Please can you clarify what is what? Many thanks !!
author | anarcharos |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160818t023607526z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-18 02:36:09 |
last_update | 2016-08-18 02:36:09 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 599 |
author_reputation | 94,040,191,830 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 864,147 |
net_rshares | 0 |
Hi, how to transfer balance from mining account to another account? Thanks
author | carlgetalada |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160801t060130340z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 06:01:30 |
last_update | 2016-08-01 06:01:30 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 18,789,905,958 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 528,205 |
net_rshares | 0 |
Hello, you add accidently two times this row seed-node = seed.steemed.net:2001 It generates an error, just remove one of them
author | cheftony |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t215414598z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 21:54:15 |
last_update | 2016-07-06 21:54:15 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 6,211,562,650,950 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,993 |
net_rshares | 0 |
Yes, my bad. There is a duplicate. Please remove the repeated line.
author | bitcube |
---|---|
permlink | re-cheftony-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t215637465z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 21:56:42 |
last_update | 2016-07-06 21:56:42 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,001 |
net_rshares | 0 |
maybe you can help me. I follow all your guide and started mining. Found 2 block but I've got this error: ... error when pushing block "unlinkable_block_exception" How can I fix this? Thanks
author | cheftony |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t000304935z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-07 00:03:06 |
last_update | 2016-07-07 00:03:06 |
depth | 1 |
children | 2 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 192 |
author_reputation | 6,211,562,650,950 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,243 |
net_rshares | 0 |
Do you see this error keeps repeating or has it gone away after some messages? If you keeps seeing this repeatedly, it means your node went into a fork or being jammed up. Steem network is facing some forking issues ATM. You will have to remove the blockchain subfolder and replace it with the latest copy here - https://mega.nz/#!WEAV0KLZ!McIhGwTEJWcnubo2kuQjrrI5JclYa5cs9q_BaU0f7Sc blockchain subfolder is located in L:\steem\stm if you follow this guide. Remember to shutdown steemd.exe before replacing the blockchain folder.
author | bitcube |
---|---|
permlink | re-cheftony-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t032545868z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://mega.nz/#!WEAV0KLZ!McIhGwTEJWcnubo2kuQjrrI5JclYa5cs9q_BaU0f7Sc"]} |
created | 2016-07-07 03:25:48 |
last_update | 2016-07-07 03:26:36 |
depth | 2 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 532 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,652 |
net_rshares | 0 |
Now it works, maybe it was a bad luck block. Another question: In the config.ini is correct this settings with N witness for N miners witness = "1abc" witness = "2abc" witness = "3abc" miner = ["1abc","5key1"] miner = ["2abc","5key2"] miner = ["3abc","5key3"] or this with only 1 witness for N miners? witness = "1" miner = ["1abc","5key1"] miner = ["2abc","5key2"] miner = ["3abc","5key3"] Thanks!
author | cheftony |
---|---|
permlink | re-bitcube-re-cheftony-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160708t195700318z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-08 19:57:00 |
last_update | 2016-07-08 19:57:00 |
depth | 3 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 409 |
author_reputation | 6,211,562,650,950 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,873 |
net_rshares | 0 |
hey i'am using the latest version of the windows wallet from github. for me it is not possible to sync the blocks. when using the blockchain you provided on mega it definitely imports them... applies hardforks... but it doesn't continue. when checking the status from cli_wallet.exe there is no progress after it is fully imported. do i need to do something to enable it to fetch the whole blockchain from the network? thanks in advance
author | fleuri |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160722t094832136z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-22 09:48:36 |
last_update | 2016-07-22 09:48:36 |
depth | 1 |
children | 2 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 438 |
author_reputation | 2,368,382,853,773 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 270,481 |
net_rshares | 0 |
it's not possible right now to mine in windows .. we have to wait release of new version
author | agente |
---|---|
permlink | re-fleuri-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160722t174215578z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-22 17:42:33 |
last_update | 2016-07-22 17:42:33 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 114,390,361,910 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 278,080 |
net_rshares | 0 |
okay solved it. i had to manually add a couple of seed-nodes. i used the following: seed-node = 52.37.169.52:2001 seed-node = 52.26.78.244:2001 seed-node = 192.99.4.226:2001 seed-node = 46.252.27.1:1337 seed-node = 81.89.101.133:2001 seed-node = 52.4.250.181:39705 seed-node = 85.214.65.220:2001
author | fleuri |
---|---|
permlink | re-fleuri-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160722t101553880z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-22 10:15:57 |
last_update | 2016-07-22 10:15:57 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 296 |
author_reputation | 2,368,382,853,773 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 270,837 |
net_rshares | 13,808,188,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syadastinasti | 0 | 13,808,188,628 | 100% |
Warning! mining STEEM is not possible anymore. Save your time. >Can I mine STEEM? >No. Proof of work mining has been removed from Steem. >https://steemit.com/faq.html#Can_I_mine_STEEM
author | khunfarang |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20170705t114018623z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"} |
created | 2017-07-05 11:40:18 |
last_update | 2017-07-05 11:40:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 11:40:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 23,724,395,578 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,386,760 |
net_rshares | 0 |
I am trying to use my current account. I am so confused about the WIF key. Actually I have started mining with my current server since 3 days ago but I got nothing. is it normal or something is wrong with my config.ini?
author | navidfathi |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160720t185757739z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-20 18:57:57 |
last_update | 2016-07-20 18:57:57 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 0 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 226,373 |
net_rshares | 0 |
thank you, very detailed tutorial worked well but how we can see mining earnings balance??
author | oklin |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160708t155038345z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-08 15:50:45 |
last_update | 2016-07-08 15:50:45 |
depth | 1 |
children | 7 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 3,990,798,881 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,893 |
net_rshares | 0 |
open a new cmd and open cli_wallet.exe in this example (using C:/) 1 - C:\mine\cli_wallet.exe (remember: steemd must run or you'll get error) 2 - then, if you set a password, type unlock yourpassword 3 - then type list_my_accounts
author | cheftony |
---|---|
permlink | re-oklin-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160708t195417080z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-08 19:54:18 |
last_update | 2016-07-08 19:54:18 |
depth | 2 |
children | 6 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 6,211,562,650,950 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,867 |
net_rshares | 591,418,446 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oklin | 0 | 264,053,038 | 100% | ||
maxkoud | 0 | 226,916,067 | 100% | ||
ladeblah | 0 | 100,449,341 | 100% |
What's wrong? ``` unlocked >>> list_my_accounts list_my_accounts 1528153ms th_a websocket_api.cpp:88 on_message ] messag e: {"id":9,"result":[]} ------------------------------------------------------------------------- TOTAL 0.000 STEEM 0.000000 VESTS 0.000 SBD unlocked >>> ```
author | maxkoud |
---|---|
permlink | re-cheftony-re-oklin-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160713t112711962z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-13 11:27:12 |
last_update | 2016-07-13 11:27:12 |
depth | 3 |
children | 5 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 340 |
author_reputation | 64,166,515,448 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,142 |
net_rshares | 114,454,703 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smailer | 0 | 114,454,703 | 100% |
Thank for this great post bitcube, it's clear and to the point. Just one thing, the first link is death because of a dot that got added to the url.
author | omarb |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t072055491z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 07:21:00 |
last_update | 2016-07-06 07:21:00 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 9,142,717,121,899 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,297 |
net_rshares | 0 |
Yes, one of the links was not working. I think it should be fixed now.
author | bitcube |
---|---|
permlink | re-omarb-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t075025412z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 07:50:27 |
last_update | 2016-07-06 07:50:27 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,339 |
net_rshares | 0 |
Am i mining now? and if i am when will i see the funds go into my steemit account? this has been running for about 18hr so far and nothing has gone into my account yet.. https://s26.postimg.org/vhp3uw8k9/steemine.jpg
author | pcste |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160726t115738061z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://s26.postimg.org/vhp3uw8k9/steemine.jpg"]} |
created | 2016-07-26 11:57:36 |
last_update | 2016-07-26 11:57:36 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 112,529,675,837,494 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 371,487 |
net_rshares | 0 |
no sooner than after 2450 minutes + round time getting reward. usually with slow hashrate you will wait much longer time.
author | wenden |
---|---|
permlink | re-pcste-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160727t062523508z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-27 06:25:24 |
last_update | 2016-07-27 06:25:24 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 136,755,887,134 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 396,307 |
net_rshares | 447,599,607 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wenden | 0 | 383,448,899 | 100% | ||
koko | 0 | 64,150,708 | 100% |
the link to part 1 doesnt work because of the . (dot) at the end
author | rittr |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160806t005428176z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-06 00:54:33 |
last_update | 2016-08-06 00:54:33 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 1,228,277,364,481 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 637,801 |
net_rshares | 0 |
Awesome! Downloading the blockchain right now. Thanks for the guide.
author | robsteady |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t125627979z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 12:56:30 |
last_update | 2016-07-06 12:56:30 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 14,812,577,318,182 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,762 |
net_rshares | 42,280,350,081 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robsteady | 0 | 42,280,350,081 | 100% |
i have a problem http://imgur.com/rc4KwoB
author | rolik |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160715t102218192z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://imgur.com/rc4KwoB"]} |
created | 2016-07-15 10:22:24 |
last_update | 2016-07-15 10:22:24 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 961,931,333,036 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 117,358 |
net_rshares | 326,840,105 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rolik | 0 | 326,840,105 | 100% |
There was a fork last night. You need to update your miner to the new software.
author | gregory-f |
---|---|
permlink | re-rolik-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160715t135914724z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-15 13:59:15 |
last_update | 2016-07-15 13:59:15 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 183,272,600,833,008 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,557 |
net_rshares | 1,907,079,875 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
on0tole | 0 | 1,907,079,875 | 100% |
https://steemit.com/mining/@rolik/mining-steem this is group in telegram about mining
author | rolik |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160718t193725464z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/mining/@rolik/mining-steem"]} |
created | 2016-07-18 19:37:36 |
last_update | 2016-07-18 19:37:36 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 961,931,333,036 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 172,033 |
net_rshares | 415,811,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
duran | 0 | 239,993,247 | 100% | ||
gribgo | 0 | 175,818,735 | 100% |
Maybe a dumb question, but is it necessary/beneficial to make a new account? Would it be problematic to use the one generated for posting on steemit instead?
author | stormbringer |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t074313880z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 07:42:15 |
last_update | 2016-07-06 07:42:15 |
depth | 1 |
children | 2 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 113,185,630,526 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,329 |
net_rshares | 15,046,355,612 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jupiter00000 | 0 | 15,046,355,612 | 100% | ||
obscureavocado | 0 | 0 | 100% |
I think you can use the "Active" key of an existing account to mine. Copy the key pair from your Steemit account. It is under the "Permissions" section.
author | bitcube |
---|---|
permlink | re-stormbringer-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t075156319z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 07:52:00 |
last_update | 2016-07-06 07:52:00 |
depth | 2 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,346 |
net_rshares | 442,502,403 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stormbringer | 0 | 442,502,403 | 100% |
Perhaps need to become a witness first, by using `update_witness` command in the CLI (better generate another key and set it as signing key). Then in config.ini, ``` witness = "your_account" miner = ["your_account","your_active_key"] private-key = your_signing_key ``` Note: no quotes around the private-key.
author | abit |
---|---|
permlink | re-bitcube-re-stormbringer-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t083214468z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 08:32:33 |
last_update | 2016-07-06 08:32:33 |
depth | 3 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 310 |
author_reputation | 141,171,499,037,785 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,423 |
net_rshares | 21,883,773,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yefet | 0 | 21,883,773,940 | 100% |
I got to the part where i need to wait for it to sync. I had downloaded the blockchain, but it was 33 hours old and it stays there it seems. I don't see anything happening that resembles syncing, though I seem to have done everything as in the guide.
author | syadastinasti |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t083545085z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-07 08:35:30 |
last_update | 2016-07-07 08:35:30 |
depth | 1 |
children | 6 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 250 |
author_reputation | 1,547,051,595,896 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,136 |
net_rshares | 0 |
steem network was facing some bad forking. It seems like your steemd is stuck or forked. Try using the latest blockchain from here - https://mega.nz/#!WEAV0KLZ!McIhGwTEJWcnubo2kuQjrrI5JclYa5cs9q_BaU0f7Sc. Make sure you shutdown steemd before doing this replacement.
author | bitcube |
---|---|
permlink | re-syadastinasti-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t091830741z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://mega.nz/#!WEAV0KLZ!McIhGwTEJWcnubo2kuQjrrI5JclYa5cs9q_BaU0f7Sc."]} |
created | 2016-07-07 09:18:33 |
last_update | 2016-07-07 09:19:03 |
depth | 2 |
children | 5 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 267 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,225 |
net_rshares | 14,035,320,936 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syadastinasti | 0 | 14,035,320,936 | 100% |
thank you! I'll try it out this evening^^
author | syadastinasti |
---|---|
permlink | re-bitcube-re-syadastinasti-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t141742192z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-07 14:17:27 |
last_update | 2016-07-07 14:17:27 |
depth | 3 |
children | 1 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 1,547,051,595,896 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,839 |
net_rshares | 0 |
Still no luck:(
author | syadastinasti |
---|---|
permlink | re-bitcube-re-syadastinasti-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160708t073522530z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-08 07:35:21 |
last_update | 2016-07-08 07:35:21 |
depth | 3 |
children | 2 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 1,547,051,595,896 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,461 |
net_rshares | 0 |
Can I mine with my existing account name and Private Posting Key as wif private key?
author | tadakaluri |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160706t093726639z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 09:37:27 |
last_update | 2016-07-06 09:37:27 |
depth | 1 |
children | 2 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 147,902,391,599 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,502 |
net_rshares | 3,487,324,194 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tadakaluri | 0 | 3,487,324,194 | 100% |
You need active key and signing key.
author | abit |
---|---|
permlink | re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160707t115946895z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-07 12:00:03 |
last_update | 2016-07-07 12:00:03 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 141,171,499,037,785 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,518 |
net_rshares | 0 |
I am looking for a same answer, did you find anything?
author | navidfathi |
---|---|
permlink | re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20160720t185630231z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-20 18:56:30 |
last_update | 2016-07-20 18:56:30 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 23:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 0 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 226,338 |
net_rshares | 0 |
Good points in this post. I was about to post a similair thread. Not sure if I believe in the current crypto investment climate but I do believe in the blockchain. We really need more insights in the market and previous investment results (even though they don't deliver any guarantee for the future). I was wondering if anyone of you uses: https://www.coincheckup.com Supposingly they researched every crypto coin in the scene based on: the team, the product, advisors, community, the business and the business model. They even score the coins stengths. Check: https://www.coincheckup.com/coins/Steem#analysis To see the: Steem Investment and research analysis.
author | tylerpena01 |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-miner-s-guide-part-2-20170926t161409430z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://www.coincheckup.com"],"app":"steemit/0.1"} |
created | 2017-09-26 16:14:18 |
last_update | 2017-09-26 16:14:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-03 16:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 667 |
author_reputation | -1,319,204,014 |
root_title | "Steem Mining in Microsoft Windows : A Miner's Guide (Part 2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,998,334 |
net_rshares | 0 |