From eb06bd1b7efe8379090716be2fdeed0d67bf166e Mon Sep 17 00:00:00 2001 From: iAmShorty Date: Wed, 12 Feb 2014 12:16:25 +0100 Subject: [PATCH] [UPDATE] changed error message --- public/include/admin_checks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/admin_checks.php b/public/include/admin_checks.php index bfc0ae4e..2c2d220a 100644 --- a/public/include/admin_checks.php +++ b/public/include/admin_checks.php @@ -80,7 +80,7 @@ if (@$_SESSION['USERDATA']['is_admin'] && $user->isAdmin(@$_SESSION['USERDATA'][ // check if there is more than one account set on wallet $accounts = $bitcoin->listaccounts(); if (count($accounts) > 1) { - $error[] = "There are " . count($accounts) . " Accounts set in local Wallet. Please ensure that there is enough Balance on the Default Account to pay your miners!"; + $error[] = "There are " . count($accounts) . " Accounts set in local Wallet. Please ensure that there is enough Balance on the Default Account to avoid issues with payouts done with sendtoaddress or sendmany!!!"; } foreach ($accounts as $account => $balance) { if ($account == "") { $account = "Default"; }