BitShares-Core  6.1.0
BitShares blockchain implementation and command-line interface software
assert.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 
28 
29 namespace graphene { namespace protocol {
30 
35  {
36  account_id_type account_id;
37  string name;
38 
43  bool validate()const;
44  };
45 
50  {
51  asset_id_type asset_id;
52  string symbol;
53 
58  bool validate()const;
59 
60  };
61 
70  {
72  bool validate()const{ return true; }
73  };
74 
79  typedef static_variant<
84 
85 
94  {
96 
98  account_id_type fee_paying_account;
99  vector<predicate> predicates;
100  flat_set<account_id_type> required_auths;
102 
103  account_id_type fee_payer()const { return fee_paying_account; }
104  void validate()const;
105  share_type calculate_fee(const fee_parameters_type& k)const;
106  };
107 
108 } } // graphene::protocol
109 
115 FC_REFLECT( graphene::protocol::assert_operation, (fee)(fee_paying_account)(predicates)(required_auths)(extensions) )
116 
future_extensions::flat_set_type extensions_type
Definition: base.hpp:156
flat_set< account_id_type > required_auths
Definition: assert.hpp:100
#define FC_REFLECT(TYPE, MEMBERS)
Specializes fc::reflector for TYPE.
Definition: reflect.hpp:388
Definition: api.cpp:48
account_id_type fee_paying_account
Definition: assert.hpp:98
FC_REFLECT_TYPENAME(fc::log_message)
assert that some conditions are true.This operation performs no changes to the database state...
Definition: assert.hpp:93
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
#define GRAPHENE_BLOCKCHAIN_PRECISION
Definition: config.hpp:29
account_id_type fee_payer() const
Definition: assert.hpp:103
static_variant< account_name_eq_lit_predicate, asset_symbol_eq_lit_predicate, block_id_predicate > predicate
Definition: assert.hpp:83
vector< predicate > predicates
Definition: assert.hpp:99