I've been doing some testing of Continuum to consider using it as a backup pool over the last day or so.
When I try to check my balance, it just returns an empty string. Not zero, just a totally blank page:
http://www.continuumpool.com/balance.php?worker=1HEPamMMbwnd6XjXHsfqQ8smrNi77vyqPbI get the same thing for balance (a blank line) when doing a JSON call from a local script:
#!/usr/bin/perl
use JSON::RPC::Client;
my $client = new JSON::RPC::Client;
my $uri = 'http://rpc.continuumpool.com:8330/rpc';
$client->prepare($uri, ['hashrate','roundstart','monitoradd','dropmonitor', 'balance','balancecurrent']);
$worker = '1HEPamMMbwnd6XjXHsfqQ8smrNi77vyqPb';
print $client->hashrate($worker);
print "\n";
print $client->balance($worker);
print "\n";
print $client->balancecurrent($worker);
print "\n";
print "Done\n";
'hashrate' and 'balancecurrent' both return meaningful values.
Is there a way to check my 'pending' (ie, non-confirmed) balance?