From a5a3e8372d417750da7dc28bde1074af4df15df8 Mon Sep 17 00:00:00 2001 From: Lemuel Smyth <36257395+lemsmyth@users.noreply.github.com> Date: Sun, 13 Feb 2022 19:07:25 -0600 Subject: [PATCH] Wallet total balance on hover (#59) * wallet total balance on hover --- templates/options-page.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/options-page.php b/templates/options-page.php index 7a6b8e3..a4648f1 100644 --- a/templates/options-page.php +++ b/templates/options-page.php @@ -8,13 +8,13 @@ defined('ABSPATH') || die(); // Exit if accessed directly $LBRY = LBRY(); $wallet_balance = $LBRY->daemon->wallet_balance(); $available_balance = $wallet_balance->result->available; +$total_balance = $wallet_balance->result->total; $lbry_active_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : 'general'; -$channel_list = $LBRY->daemon->channel_list(); ?>

-

Wallet Available Balance

+

Wallet Available Balance