| 148 | } |
| 149 | |
| 150 | string StandardTrace::json(bool _styled) const |
| 151 | { |
| 152 | #ifdef LUX_BUILD |
| 153 | return ""; |
| 154 | #else |
| 155 | return _styled ? Json::StyledWriter().write(m_trace) : Json::FastWriter().write(m_trace); |
| 156 | #endif |
| 157 | } |
| 158 | |
| 159 | Executive::Executive(Block& _s, BlockChain const& _bc, unsigned _level): |
| 160 | m_s(_s.mutableState()), |
no test coverage detected