Skip to content

Commit

Permalink
Merge pull request #3509 from steemit/3507-posting-json-metadata-api
Browse files Browse the repository at this point in the history
Add posting_json_metadata to condenser_api account_object
  • Loading branch information
sgerbino committed Sep 12, 2019
2 parents a34cf96 + 5b77bcb commit 53392cc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ struct api_account_object
posting( a.posting ),
memo_key( a.memo_key ),
json_metadata( a.json_metadata ),
posting_json_metadata( a.posting_json_metadata ),
proxy( a.proxy ),
last_owner_update( a.last_owner_update ),
last_account_update( a.last_account_update ),
Expand Down Expand Up @@ -165,6 +166,7 @@ struct api_account_object
authority posting;
public_key_type memo_key;
string json_metadata;
string posting_json_metadata;
account_name_type proxy;

time_point_sec last_owner_update;
Expand Down Expand Up @@ -1196,7 +1198,8 @@ FC_REFLECT( steem::plugins::condenser_api::api_operation_object,
(trx_id)(block)(trx_in_block)(op_in_trx)(virtual_op)(timestamp)(op) )

FC_REFLECT( steem::plugins::condenser_api::api_account_object,
(id)(name)(owner)(active)(posting)(memo_key)(json_metadata)(proxy)(last_owner_update)(last_account_update)
(id)(name)(owner)(active)(posting)(memo_key)(json_metadata)(posting_json_metadata)
(proxy)(last_owner_update)(last_account_update)
(created)(mined)
(recovery_account)(last_account_recovery)(reset_account)
(comment_count)(lifetime_vote_count)(post_count)(can_vote)(voting_manabar)(downvote_manabar)(voting_power)
Expand Down

0 comments on commit 53392cc

Please sign in to comment.