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 ); }