BitShares-Core  6.1.0
BitShares blockchain implementation and command-line interface software
global_property_object.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cryptonomex, Inc., and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #pragma once
25 
27 #include <graphene/chain/types.hpp>
28 #include <graphene/db/object.hpp>
29 
30 namespace graphene { namespace chain {
31 
40  class global_property_object : public graphene::db::abstract_object<global_property_object,
41  implementation_ids, impl_global_property_object_type>
42  {
43  public:
45  optional<chain_parameters> pending_parameters;
46 
47  uint32_t next_available_vote_id = 0;
48  vector<committee_member_id_type> active_committee_members; // updated once per maintenance interval
49  flat_set<witness_id_type> active_witnesses; // updated once per maintenance interval
50  // n.b. witness scheduling is done by witness_schedule object
51  };
52 
62  class dynamic_global_property_object : public abstract_object<dynamic_global_property_object,
63  implementation_ids, impl_dynamic_global_property_object_type>
64  {
65  public:
66  uint32_t head_block_number = 0;
68  time_point_sec time;
69  witness_id_type current_witness;
70  time_point_sec next_maintenance_time;
71  time_point_sec last_vote_tally_time;
72  time_point_sec last_budget_time;
76  uint32_t accounts_registered_this_interval = 0;
84  uint32_t recently_missed_count = 0;
85 
91  uint64_t current_aslot = 0;
92 
96  fc::uint128_t recent_slots_filled;
97 
102  uint32_t dynamic_flags = 0;
103 
104  uint32_t last_irreversible_block_num = 0;
105 
107  {
117  maintenance_flag = 0x01
118  };
119  };
120 }}
121 
124 
127 
Maintains global state information (committee_member list, current fees)This is an implementation det...
Definition: api.cpp:48
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
FC_REFLECT_TYPENAME(fc::log_message)
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
vector< committee_member_id_type > active_committee_members
Maintains global state information (committee_member list, current fees)This is an implementation det...
optional< chain_parameters > pending_parameters