BitShares-Core
7.0.2
BitShares blockchain node software and command-line wallet software
libraries
protocol
special_authority.cpp
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
25
#include <
graphene/protocol/special_authority.hpp
>
26
27
#include <
fc/io/raw.hpp
>
28
29
namespace
graphene
{
namespace
protocol {
30
31
struct
special_authority_validate_visitor
32
{
33
typedef
void
result_type
;
34
35
void
operator()
(
const
no_special_authority
& a ) {}
36
37
void
operator()
(
const
top_holders_special_authority
& a )
38
{
39
FC_ASSERT
( a.
num_top_holders
> 0 );
40
}
41
};
42
43
void
validate_special_authority
(
const
special_authority
& a )
44
{
45
special_authority_validate_visitor
vtor;
46
a.
visit
( vtor );
47
}
48
49
} }
// graphene::protocol
50
51
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::top_holders_special_authority
)
graphene::protocol::special_authority_validate_visitor::result_type
void result_type
Definition:
special_authority.cpp:33
special_authority.hpp
fc::static_variant
Definition:
raw_fwd.hpp:27
graphene::protocol::validate_special_authority
void validate_special_authority(const special_authority &auth)
Definition:
special_authority.cpp:43
graphene::protocol::special_authority_validate_visitor::operator()
void operator()(const top_holders_special_authority &a)
Definition:
special_authority.cpp:37
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
#define GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION(type)
Definition:
types.hpp:86
graphene::protocol::special_authority_validate_visitor
Definition:
special_authority.cpp:31
graphene::protocol::no_special_authority
Definition:
special_authority.hpp:30
graphene::protocol::top_holders_special_authority
Definition:
special_authority.hpp:32
FC_ASSERT
#define FC_ASSERT(TEST,...)
Checks a condition and throws an assert_exception if the test is FALSE.
Definition:
exception.hpp:345
fc::static_variant::visit
visitor::result_type visit(visitor &v)
Definition:
static_variant.hpp:256
graphene::protocol::special_authority_validate_visitor::operator()
void operator()(const no_special_authority &a)
Definition:
special_authority.cpp:35
graphene
Definition:
api.cpp:48
graphene::protocol::top_holders_special_authority::num_top_holders
uint8_t num_top_holders
Definition:
special_authority.hpp:35
raw.hpp
Generated on Fri Dec 15 2023 06:12:43 for BitShares-Core by
1.8.17