From 008edc848ade44d5a89ee4df764101e548925b47 Mon Sep 17 00:00:00 2001 From: Ario Date: Mon, 16 Sep 2019 12:40:12 +0200 Subject: [PATCH] log --- include/block.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/block.inc.php b/include/block.inc.php index 8d622cd..79328d5 100755 --- a/include/block.inc.php +++ b/include/block.inc.php @@ -368,11 +368,12 @@ class Block ":transactions" => $data['transactions'], ":masternodes" => $data['masternodes'], ":supply" => $supply, - ":reward" => $reward + ":reward" => $reward, + ":mn_reward" => $mn_reward_rate ]; $res = $db->run( - "INSERT into networkstats SET id=:id, height=:height, difficulty=:difficulty, accounts=:accounts, transactions=:transactions, masternodes=:masternodes, supply=:supply, reward=:reward", + "INSERT into networkstats SET id=:id, height=:height, difficulty=:difficulty, accounts=:accounts, transactions=:transactions, masternodes=:masternodes, supply=:supply, reward=:reward, mn_reward=:mn_reward", $bind ); }