Skip to content
Snippets Groups Projects
Commit 12e0ce96 authored by Dariusz Kędzierski's avatar Dariusz Kędzierski
Browse files

Fixes for hivemind exceptions

- Fixed KeyError in get_state call: eclipse node returns hbd_ prefix
- Fixed Decimal is not json serializable in get_active_votes
parent ddf542e6
No related branches found
No related tags found
4 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!135Enable postgres monitoring on CI server,!51Fixes for hivemind exceptions
...@@ -299,8 +299,8 @@ async def _get_props_lite(db): ...@@ -299,8 +299,8 @@ async def _get_props_lite(db):
return dict( return dict(
time=raw['time'], #* time=raw['time'], #*
sbd_print_rate=raw['sbd_print_rate'], sbd_print_rate=raw['hbd_print_rate'], # TODO: rename this key to hbd_ after 0.24
sbd_interest_rate=raw['sbd_interest_rate'], sbd_interest_rate=raw['hbd_interest_rate'], # TODO: rename this key to hbd_ after 0.24
head_block_number=raw['head_block_number'], #* head_block_number=raw['head_block_number'], #*
total_vesting_shares=raw['total_vesting_shares'], total_vesting_shares=raw['total_vesting_shares'],
total_vesting_fund_steem=raw['total_vesting_fund_hive'], total_vesting_fund_steem=raw['total_vesting_fund_hive'],
......
...@@ -244,6 +244,9 @@ def number_to_json_value(number): ...@@ -244,6 +244,9 @@ def number_to_json_value(number):
""" """
if number > 0xFFFFFFFF: if number > 0xFFFFFFFF:
return str(number) return str(number)
from decimal import Decimal
if isinstance(number, Decimal):
return str(number)
return number return number
def time_string_with_t(time_iso8601): def time_string_with_t(time_iso8601):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment