diff --git a/hive/server/condenser_api/methods.py b/hive/server/condenser_api/methods.py index 56b1ed3e92d932bf1b7a34f3ae37bb466312bf17..81c90efaad9ba5e15d420689a84df7118b6eef5a 100644 --- a/hive/server/condenser_api/methods.py +++ b/hive/server/condenser_api/methods.py @@ -16,7 +16,7 @@ from hive.server.common.helpers import ( valid_follow_type) from hive.server.common.mutes import Mutes from hive.server.database_api.methods import find_votes, VotesPresentation -from hive.utils.normalize import rep_to_raw, number_to_json_value, time_string_with_t +from hive.utils.normalize import rep_to_raw, time_string_with_t # pylint: disable=too-many-arguments,line-too-long,too-many-lines diff --git a/hive/server/database_api/methods.py b/hive/server/database_api/methods.py index 588f9f9f6a084ec3e03e453ffdd24564c3a58c87..914f1b9d6987997d310429a9ba65738768171d04 100644 --- a/hive/server/database_api/methods.py +++ b/hive/server/database_api/methods.py @@ -3,7 +3,7 @@ from enum import Enum from hive.server.common.helpers import return_error_info, valid_limit, valid_account, valid_permlink, valid_date from hive.server.database_api.objects import database_post_object -from hive.utils.normalize import rep_to_raw, number_to_json_value, time_string_with_t +from hive.utils.normalize import rep_to_raw, time_string_with_t from hive.server.common.helpers import json_date import datetime @@ -172,18 +172,18 @@ def api_vote_info(rows, votes_presentation): ret = [] for row in rows: if votes_presentation == VotesPresentation.DatabaseApi: - ret.append(dict(voter=row.voter, author=row.author, permlink=row.permlink, - weight=number_to_json_value(row.weight), rshares=number_to_json_value(row.rshares), vote_percent=row.percent, - last_update=json_date(row.last_update), num_changes=row.num_changes)) + ret.append(dict(voter = row.voter, author = row.author, permlink = row.permlink, + weight = row.weight, rshares = row.rshares, vote_percent = row.percent, + last_update = json_date(row.last_update), num_changes = row.num_changes)) elif votes_presentation == VotesPresentation.CondenserApi: - ret.append(dict(percent=str(row.percent), reputation=rep_to_raw(row.reputation), - rshares=number_to_json_value(row.rshares), voter=row.voter)) + ret.append(dict(percent = str(row.percent), reputation = rep_to_raw(row.reputation), + rshares = row.rshares, voter = row.voter)) elif votes_presentation == VotesPresentation.BridgeApi: - ret.append(dict(rshares=number_to_json_value(row.rshares), voter=row.voter)) + ret.append(dict(rshares = row.rshares, voter = row.voter)) else: - ret.append(dict(percent=row.percent, reputation=rep_to_raw(row.reputation), - rshares=number_to_json_value(row.rshares), time=time_string_with_t(row.time), - voter=row.voter, weight=number_to_json_value(row.weight) + ret.append(dict(percent = row.percent, reputation = rep_to_raw(row.reputation), + rshares = row.rshares, time = json_date(row.last_update), + voter = row.voter, weight = row.weight )) return ret diff --git a/hive/utils/normalize.py b/hive/utils/normalize.py index b36af67b7f60da188739683b91257244ef30b49c..2134b7d2db3ab2d46aa59b73f50196917f1347db 100644 --- a/hive/utils/normalize.py +++ b/hive/utils/normalize.py @@ -278,15 +278,6 @@ def asset_to_hbd_hive(price, asset): return {'amount' : result, 'nai' : price['base']['nai'], 'precision' : price['base']['precision']} raise ValueError("Asset not supported") -def number_to_json_value(number): - """ hived serialize some numbers greater than 0xFFFFFFFF as strings - - Check 'json::stringify_large_ints_and_doubles' in hive C++ code - """ - if number > 0xFFFFFFFF: - return str(number) - return int(number) - def time_string_with_t(time_iso8601): """ Ensures that time in format ISO8601 use 'T' as a data time separator