1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

std_boc_serialize_to_file_large -> boc_serialize_to_file_large

This commit is contained in:
Marat S 2025-02-28 22:33:33 +00:00
parent bc3fc8966f
commit e5c4f9e37d
4 changed files with 5 additions and 5 deletions

View file

@ -2315,7 +2315,7 @@ TEST(TonDb, LargeBocSerializer) {
td::unlink(path).ignore();
fd = td::FileFd::open(path, td::FileFd::Flags::Create | td::FileFd::Flags::Truncate | td::FileFd::Flags::Write)
.move_as_ok();
std_boc_serialize_to_file_large(dboc->get_cell_db_reader(), root->get_hash(), fd, 31);
boc_serialize_to_file_large(dboc->get_cell_db_reader(), root->get_hash(), fd, 31);
fd.close();
auto b = td::read_file_str(path).move_as_ok();