BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet 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;
69  witness_id_type current_witness;
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 
105 
107  {
118  };
119  };
120 }}
121 
124 
127 
graphene::chain::dynamic_global_property_object
Maintains global state information (committee_member list, current fees)
Definition: global_property_object.hpp:62
graphene::chain::dynamic_global_property_object::current_aslot
uint64_t current_aslot
Definition: global_property_object.hpp:91
graphene::chain::dynamic_global_property_object::time
time_point_sec time
Definition: global_property_object.hpp:68
graphene::chain::dynamic_global_property_object::next_maintenance_time
time_point_sec next_maintenance_time
Definition: global_property_object.hpp:70
FC_REFLECT_TYPENAME
FC_REFLECT_TYPENAME(fc::log_message)
graphene::chain::global_property_object::parameters
chain_parameters parameters
Definition: global_property_object.hpp:44
graphene::chain::dynamic_global_property_object::head_block_id
block_id_type head_block_id
Definition: global_property_object.hpp:67
graphene::chain::dynamic_global_property_object::witness_budget
share_type witness_budget
Definition: global_property_object.hpp:73
MAP_OBJECT_ID_TO_TYPE
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
graphene::chain::dynamic_global_property_object::last_vote_tally_time
time_point_sec last_vote_tally_time
Definition: global_property_object.hpp:71
graphene::db::abstract_object
Definition: object.hpp:107
graphene::chain::dynamic_global_property_object::recent_slots_filled
fc::uint128_t recent_slots_filled
Definition: global_property_object.hpp:96
graphene::chain::dynamic_global_property_object::total_inactive
share_type total_inactive
Definition: global_property_object.hpp:75
graphene::chain::dynamic_global_property_object::head_block_number
uint32_t head_block_number
Definition: global_property_object.hpp:66
graphene::chain::dynamic_global_property_object::accounts_registered_this_interval
uint32_t accounts_registered_this_interval
Definition: global_property_object.hpp:76
fc::time_point_sec
Definition: time.hpp:74
graphene::chain::dynamic_global_property_object::recently_missed_count
uint32_t recently_missed_count
Definition: global_property_object.hpp:84
graphene::chain::dynamic_global_property_object::last_irreversible_block_num
uint32_t last_irreversible_block_num
Definition: global_property_object.hpp:104
fc::ripemd160
Definition: ripemd160.hpp:11
GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
graphene::chain::dynamic_global_property_object::last_budget_time
time_point_sec last_budget_time
Definition: global_property_object.hpp:72
graphene::chain::dynamic_global_property_object::total_pob
share_type total_pob
Definition: global_property_object.hpp:74
graphene::protocol::chain_parameters
Definition: chain_parameters.hpp:46
graphene::chain::dynamic_global_property_object::current_witness
witness_id_type current_witness
Definition: global_property_object.hpp:69
graphene::chain::dynamic_global_property_object::dynamic_flags
uint32_t dynamic_flags
Definition: global_property_object.hpp:102
graphene::chain::global_property_object::active_witnesses
flat_set< witness_id_type > active_witnesses
Definition: global_property_object.hpp:49
graphene::chain::global_property_object::next_available_vote_id
uint32_t next_available_vote_id
Definition: global_property_object.hpp:47
graphene::chain::global_property_object
Maintains global state information (committee_member list, current fees)
Definition: global_property_object.hpp:40
types.hpp
graphene::chain::global_property_object::pending_parameters
optional< chain_parameters > pending_parameters
Definition: global_property_object.hpp:45
graphene::chain::global_property_object::active_committee_members
vector< committee_member_id_type > active_committee_members
Definition: global_property_object.hpp:48
graphene::chain::dynamic_global_property_object::maintenance_flag
@ maintenance_flag
Definition: global_property_object.hpp:117
object.hpp
graphene::chain::dynamic_global_property_object::dynamic_flag_bits
dynamic_flag_bits
Definition: global_property_object.hpp:106
chain_parameters.hpp
graphene
Definition: api.cpp:48
fc::safe
Definition: safe.hpp:26