| 185 | } |
| 186 | |
| 187 | void database::apply_debug_updates() |
| 188 | { |
| 189 | block_id_type head_id = head_block_id(); |
| 190 | auto it = _node_property_object.debug_updates.find( head_id ); |
| 191 | if( it == _node_property_object.debug_updates.end() ) |
| 192 | return; |
| 193 | for( const fc::variant_object& update : it->second ) |
| 194 | debug_apply_update( *this, update ); |
| 195 | } |
| 196 | |
| 197 | void database::debug_update( const fc::variant_object& update ) |
| 198 | { |
nothing calls this directly
no test coverage detected