#!/usr/bin/php
$clientPath = "/home/kalgecin/pennies/src/pennies";
$sendToAddress = "PC26wxsNJXKi6732uKTmvjkLMQMjZBPzJ3";
$amountPerBatch = 50000000.00;
$balance = `$clientPath getbalance $fromAccount`;
echo "Your balance: $balance\n";
while($balance > $amountPerBatch){
echo $balance.' '.`$clientPath sendtoaddress $sendToAddress $amountPerBatch`;
$balance -= $amountPerBatch;
}
$clientPath = "/home/kalgecin/pennies/src/pennies";
$sendToAddress = "PC26wxsNJXKi6732uKTmvjkLMQMjZBPzJ3";
$amountPerBatch = 50000000.00;
Happy new years :-D
What can I put in the variable fromAccount?
Runned in Linux with php. What does the script do exactly? Getting extra batches? Changes the stake amount? Thanks for posting btw!