removing unecessary field

This commit is contained in:
Daniel Larimer 2015-07-14 18:50:03 -04:00
parent a60c506cc7
commit e5f8d0f548
2 changed files with 0 additions and 2 deletions

View file

@ -578,7 +578,6 @@ void database::create_block_summary(const signed_block& next_block)
block_summary_id_type sid(next_block.block_num() & 0xffff );
modify( sid(*this), [&](block_summary_object& p) {
p.block_id = next_block.id();
p.timestamp = next_block.timestamp;
});
}

View file

@ -37,7 +37,6 @@ namespace graphene { namespace chain {
static const uint8_t type_id = impl_block_summary_object_type;
block_id_type block_id;
fc::time_point_sec timestamp;
};
} }