I'm getting an error "Undefined variable: fromAccount."
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!
[/quote]
yes sorry about that :-) here's the update
#!/usr/bin/php
$clientPath = "/home/kalgecin/pennies/src/pennies";
$sendToAddress = "PC26wxsNJXKi6732uKTmvjkLMQMjZBPzJ3";
$amountPerBatch = 50000000.00;
$balance = `$clientPath getbalance`;
echo "Your balance: $balance\n";
while($balance > $amountPerBatch){
echo $balance.' '.`$clientPath sendtoaddress $sendToAddress $amountPerBatch`;
$balance -= $amountPerBatch;
}