mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-08 03:29:45 +00:00
wallets: show status codes descriptions
This commit is contained in:
parent
d32c673fa9
commit
3516e623f5
1 changed files with 10 additions and 6 deletions
|
@ -78,16 +78,20 @@ foreach($coins as $coin)
|
||||||
|
|
||||||
if($coin->enable)
|
if($coin->enable)
|
||||||
{
|
{
|
||||||
echo "u";
|
echo '<span title="coin enabled">u</span>';
|
||||||
if($coin->auto_ready) echo '<span style="color: green;"> a</span>';
|
if($coin->auto_ready) echo '<span style="color: green;" title="active on stratum"> a</span>';
|
||||||
else echo '<span style="color: red;"> d</span>';
|
else echo '<span style="color: red;" title="disconnected from stratum"> d</span>';
|
||||||
|
|
||||||
|
if($coin->visible) echo '<span title="visible to public">v</span>';
|
||||||
|
else echo ' ';
|
||||||
|
|
||||||
echo '<br>';
|
echo '<br>';
|
||||||
|
|
||||||
if($coin->visible) echo "v";
|
if($coin->auxpow) echo '<span title="aux pow enabled"> x</span>';
|
||||||
else echo ' ';
|
|
||||||
|
|
||||||
if($coin->auxpow) echo " x";
|
if($coin->rpccurl) echo '<span title="rpc curl enabled"> c</span>';
|
||||||
|
|
||||||
|
if($coin->rpcssl) echo '<span title="rpc ssl enabled"> s</span>';
|
||||||
|
|
||||||
if($coin->block_height < $coin->target_height)
|
if($coin->block_height < $coin->target_height)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue