From 3516e623f58611504cc22ad50cd6db21ffabfa3b Mon Sep 17 00:00:00 2001 From: crackfoo Date: Thu, 28 Apr 2016 05:18:11 +0200 Subject: [PATCH] wallets: show status codes descriptions --- web/yaamp/modules/site/admin_results.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/web/yaamp/modules/site/admin_results.php b/web/yaamp/modules/site/admin_results.php index 86125d9..5d4393c 100644 --- a/web/yaamp/modules/site/admin_results.php +++ b/web/yaamp/modules/site/admin_results.php @@ -78,16 +78,20 @@ foreach($coins as $coin) if($coin->enable) { - echo "u"; - if($coin->auto_ready) echo ' a'; - else echo ' d'; + echo 'u'; + if($coin->auto_ready) echo ' a'; + else echo ' d'; + + if($coin->visible) echo 'v'; + else echo ' '; echo '
'; - if($coin->visible) echo "v"; - else echo ' '; + if($coin->auxpow) echo ' x'; - if($coin->auxpow) echo " x"; + if($coin->rpccurl) echo ' c'; + + if($coin->rpcssl) echo ' s'; if($coin->block_height < $coin->target_height) {