Update sdk #17

Merged
prkirby merged 8 commits from update-sdk into master 2020-01-28 04:13:15 +01:00
Showing only changes of commit 4752915e4d - Show all commits

View file

@ -148,9 +148,9 @@ class LBRY_Admin
*/
public function wallet_callback()
{
// Get first available address from Daemon
// Get first available account address from Daemon
$address = LBRY()->daemon->address_list()->items;
$address = is_array($address) && !empty($address) ? $address[0] : '';
$address = is_array($address) && !empty($address) ? $address[0]->address : '';
printf(
'<input type="text" id="%1$s" name="%2$s[%1$s]" value="%3$s" readonly />',
LBRY_WALLET,