Closed abitmore closed 2 years ago
PR for #2637 and https://github.com/blocksights/blocksights-open-explorer/issues/9.
This PR adds 4 data fields into the order struct:
order
id
owner_id
owner_name
expiration
The full order struct becomes:
struct order { string price; string quote; string base; limit_order_id_type id; account_id_type owner_id; string owner_name; time_point_sec expiration; };
The order_book struct itself is unchanged.
order_book
struct order_book { string base; string quote; vector< order > bids; vector< order > asks; };
Kudos, SonarCloud Quality Gate passed!
0 Bugs 0 Vulnerabilities 0 Security Hotspots 0 Code Smells
81.2% Coverage 0.0% Duplication
PR for #2637 and https://github.com/blocksights/blocksights-open-explorer/issues/9.
This PR adds 4 data fields into the
order
struct:id
- ID of the limit orderowner_id
- owner account ID of the limit orderowner_name
- owner account name of the limit orderexpiration
- expiration time of the limit orderThe full
order
struct becomes:The
order_book
struct itself is unchanged.