From 66310e5679daf8d043bc9d32a4ea09d1bab9f607 Mon Sep 17 00:00:00 2001 From: Ario Date: Wed, 9 Oct 2019 11:22:37 +0200 Subject: [PATCH] blacklisted --- include/block.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/block.inc.php b/include/block.inc.php index fa8f419..460b91e 100755 --- a/include/block.inc.php +++ b/include/block.inc.php @@ -396,6 +396,7 @@ class Block ":transactions" => $data['transactions'], ":masternodes" => $data['masternodes'], ":mn_paused" => $mndata['paused'], + ":blacklisted" => $mndata['blacklisted'], ":supply" => $supply, ":reward" => $reward, ":mn_reward" => $mn_reward_rate, @@ -405,7 +406,7 @@ class Block ]; $res = $db->run( - "INSERT into networkstats SET id=:id, height=:height, difficulty=:difficulty, accounts=:accounts, transactions=:transactions, masternodes=:masternodes, mn_paused=:mn_paused, + "INSERT into networkstats SET id=:id, height=:height, difficulty=:difficulty, accounts=:accounts, transactions=:transactions, masternodes=:masternodes, mn_paused=:mn_paused, blacklisted=:blacklisted, supply=:supply, reward=:reward, mn_reward=:mn_reward, mn_daily_reward=:mn_daily_reward, mn_daily_cold_reward=:mn_daily_cold_reward", $bind );