| 289 | } |
| 290 | |
| 291 | void database_fixture::open_database() |
| 292 | { |
| 293 | if( !data_dir ) { |
| 294 | data_dir = fc::temp_directory( graphene::utilities::temp_directory_path() ); |
| 295 | db.open(data_dir->path(), [this]{return genesis_state;}); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | signed_block database_fixture::generate_block(uint32_t skip, const fc::ecc::private_key& key, int miss_blocks) |
| 300 | { |
nothing calls this directly
no test coverage detected