Scorum
applied_operation.cpp
Go to the documentation of this file.
2 
3 namespace scorum {
4 namespace blockchain_history {
5 
7  : trx_id(op_obj.trx_id)
8  , block(op_obj.block)
9  , trx_in_block(op_obj.trx_in_block)
10  , op_in_trx(op_obj.op_in_trx)
11  , timestamp(op_obj.timestamp)
12 {
13  // fc::raw::unpack( op_obj.serialized_op, op ); // g++ refuses to compile this as ambiguous
14  op = fc::raw::unpack<operation>(op_obj.serialized_op);
15 }
16 
18 
20  : applied_operation(op_obj)
21 {
22 }
23 }
24 }
Definition: asset.cpp:15