identity.cpp 239 字节
Newer Older
1 2 3 4 5 6 7 8 9
#include "identity.hpp"

extern "C" {
    /// The apply method implements the dispatch of events to this contract
    void apply( uint64_t code, uint64_t action ) {
       identity::contract< N(identity) >::apply( code, action );
    }
}