Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
sysio.boot.cpp
Go to the documentation of this file.
2#include <sysio/privileged.hpp>
3
4namespace sysioboot {
5
6void boot::onerror( ignore<uint128_t>, ignore<std::vector<char>> ) {
7 check( false, "the onerror action cannot be called directly" );
8}
9
10void boot::activate( const sysio::checksum256& feature_digest ) {
11 require_auth( get_self() );
12 sysio::preactivate_feature( feature_digest );
13}
14
15void boot::reqactivated( const sysio::checksum256& feature_digest ) {
16 check( sysio::is_feature_activated( feature_digest ), "protocol feature is not activated" );
17}
18
19}
void onerror(ignore< uint128_t > sender_id, ignore< std::vector< char > > sent_trx)
Definition sysio.boot.cpp:6
void reqactivated(const sysio::checksum256 &feature_digest)
void activate(const sysio::checksum256 &feature_digest)