Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Jan 29, 2024
1 parent 4e46e79 commit 9e673c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
1 change: 1 addition & 0 deletions crypto/tl/tlblib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ bool PrettyPrinter::mode_nl() {

bool PrettyPrinter::field(std::string name) {
mode_nl();
LOG(ERROR) << "FIELD: " << name;
os << name << ':';
return true;
}
Expand Down
13 changes: 0 additions & 13 deletions tvm-python/python_ton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,6 @@ std::string py_parse_chunked_data(PyCellSlice cs) {
return parse_chunked_data(cs.my_cell_slice);
}

std::string test_gg() {
std::stringstream os;
os << "LOLKEK!";
os << "\nKEKLOL!";

LOG(ERROR) << 321;
LOG(ERROR) << "432123 " << 3333;
LOG(ERROR) << "\n\n\tlolkk";

return os.str();
}

bool shard_is_ancestor(ton::ShardId parent, ton::ShardId child) {
return ton::shard_is_ancestor(parent, child);
}
Expand Down Expand Up @@ -501,5 +489,4 @@ PYBIND11_MODULE(python_ton, m) {
m.def("address_from_string", address_from_string, py::arg("address"));
m.def("parse_chunked_data", py_parse_chunked_data, py::arg("cs"));
m.def("address_from_cell_slice", address_from_cell_slice, py::arg("cell_slice"));
m.def("test_gg", test_gg);
}

0 comments on commit 9e673c0

Please sign in to comment.