Update LBRY_Daemon.php

This commit is contained in:
Lemuel Smyth 2022-01-28 17:05:24 -06:00 committed by GitHub
parent 04e600a12d
commit 3aed9ece2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,8 +80,8 @@ class LBRY_Daemon
$result = $this->request('wallet_balance'); $result = $this->request('wallet_balance');
return $result; return $result;
} catch (LBRYDaemonException $e) { } catch (LBRYDaemonException $e) {
$this->logger->log('account_balance error', $e->getMessage() . ' | Code: ' . $e->getCode()); $this->logger->log('wallet_balance error', $e->getMessage() . ' | Code: ' . $e->getCode());
LBRY()->notice->set_notice('error', 'Issue getting account balance.'); LBRY()->notice->set_notice('error', 'Issue getting wallet balance.');
return; return;
} }
} }