| 822 | } |
| 823 | |
| 824 | static td::Status process_integer(Ctx &ctx) { |
| 825 | if (!ctx.is_integer()) { |
| 826 | return td::Status::Error(ton::ErrorCode::protoviolation, PSTRING() << ctx.path() << " must be an integer"); |
| 827 | } |
| 828 | return td::Status::OK(); |
| 829 | } |
| 830 | |
| 831 | static td::Status process_boolean(Ctx &ctx) { |
| 832 | if (!ctx.is_boolean()) { |
nothing calls this directly
no test coverage detected