From 9e673c0676fe022f8b658c613da05a59b39b772b Mon Sep 17 00:00:00 2001 From: Andrey Tvorozhkov Date: Mon, 29 Jan 2024 11:50:17 +0300 Subject: [PATCH] Test --- crypto/tl/tlblib.cpp | 1 + tvm-python/python_ton.cpp | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/crypto/tl/tlblib.cpp b/crypto/tl/tlblib.cpp index 0e0e56265..8643e2da9 100644 --- a/crypto/tl/tlblib.cpp +++ b/crypto/tl/tlblib.cpp @@ -282,6 +282,7 @@ bool PrettyPrinter::mode_nl() { bool PrettyPrinter::field(std::string name) { mode_nl(); + LOG(ERROR) << "FIELD: " << name; os << name << ':'; return true; } diff --git a/tvm-python/python_ton.cpp b/tvm-python/python_ton.cpp index 6c3e8a546..d7d9c7e0f 100644 --- a/tvm-python/python_ton.cpp +++ b/tvm-python/python_ton.cpp @@ -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); } @@ -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); }