From 03a86e63ac61d70fd592da70f42a3f42a4203584 Mon Sep 17 00:00:00 2001 From: Lem Smyth Date: Sun, 13 Feb 2022 19:02:57 -0600 Subject: [PATCH] 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