| 172 | } |
| 173 | |
| 174 | std::string |
| 175 | TransactionData::write_content_node(int64_t num_body_bytes) |
| 176 | { |
| 177 | return std::string(R"(,"content":{"encoding":"plain","size":)" + std::to_string(num_body_bytes) + '}'); |
| 178 | } |
| 179 | |
| 180 | std::string |
| 181 | TransactionData::write_content_node(std::string_view body) |
no test coverage detected