Post
Topic
Board Announcements (Altcoins)
Re: [ANN] RazorLove Cryptocurrency Services - DBL, CENT, & FOO/BAR Updates
by
kalgecin
on 02/01/2014, 11:41:33 UTC
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
Code:
#!/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;
}