So you have your miner(s) up and running and you want to cash out. But your funds are all over the place! You have set your witnesses to several different account names and your funds are spread out. It is possible to withdraw your steempower to your main account. You just have to be very, very patient. So what can you do to transfer funds?
set_withdraw_vesting_route. Here is the help command:
gethelp set_withdraw_vesting_route
Which will output the following:
set_withdraw_vesting_route(string from, string to, uint16_t percent, bool auto_vest, bool broadcast)
Set up a vesting withdraw route. When vesting shares are withdrawn, they
will be routed to these accounts based on the specified weights.
Parameters:
from: The account the VESTS are withdrawn from. (type: string)
to: The account receiving either VESTS or STEEM. (type: string)
percent: The percent of the withdraw to go to the 'to' account. This is
denoted in hundreths of a percent. i.e. 100 is 1% and 10000 is
100%. This value must be between 1 and 100000 (type: uint16_t)
auto_vest: Set to true if the from account should receive the VESTS as
VESTS, or false if it should receive them as STEEM. (type: bool)
broadcast: true if you wish to broadcast the transaction. (type: bool)
So when you open cli-wallet.exe you can execute this command below. Warning! as the help says: The percent of the withdraw to go to the 'to' account. This is denoted in hundreths of a percent. i.e. 100 is 1% and 10000 is 100%. This value must be between 1 and 100000.
Also! Set to true if the from account should receive the VESTS as VESTS (STEEM POWER), or false if it should receive them as STEEM.
# will send 100% of current available STEEM POWER from one account to the other
set_withdraw_vesting_route(your_mining_account, your_new_account, 10000, 1, 1)
Now you have activated your 2 year steem power down from one account to the other.
# will send 100% of current available STEEM POWER from one account to STEEM balance
# in the other account
set_withdraw_vesting_route(your_mining_account, your_new_account, 10000, 0, 1)
This process will start the power down for the current amount of STEEMPOWER that you have. For every STEEMPOWER that you receive after the power down you would have to repeat the process.
So which option will you go for?