| 1246 | jb.stop_object(); |
| 1247 | } |
| 1248 | void BaseRunner::store_root_contract_stat(td::StringBuilder &sb) { |
| 1249 | auto conf = runner_config(); |
| 1250 | if (conf) { |
| 1251 | sb << "<h1>GLOBAL CONFIG</h1>\n"; |
| 1252 | conf->root_contract_config->store_stat(this, sb); |
| 1253 | } |
| 1254 | } |
| 1255 | void BaseRunner::store_root_contract_stat(SimpleJsonSerializer &jb) { |
| 1256 | auto conf = runner_config(); |
| 1257 | if (conf) { |
nothing calls this directly
no test coverage detected