diff --git a/web/yaamp/modules/site/coin_results.php b/web/yaamp/modules/site/coin_results.php index f25bb91a3..e661e8a25 100644 --- a/web/yaamp/modules/site/coin_results.php +++ b/web/yaamp/modules/site/coin_results.php @@ -302,6 +302,14 @@ $txs = $remote->listtransactions($account, $maxrows); +// Coins with disabled accounting will not show any tx. $account should be "*" + +if (empty($txs)) { + $account = '*'; + $txs = $remote->listtransactions($account, $maxrows); +} + + if (empty($txs)) { if (!empty($remote->error)) { echo "RPC Error: {$remote->error}
";