| 515 | struct Error : public json_rpc::Error { |
| 516 | Height conflict_height = 0; |
| 517 | Error() = default; |
| 518 | Error(int c, const std::string &msg, Height conflict_height) |
| 519 | : json_rpc::Error(c, msg), conflict_height(conflict_height) {} |
| 520 | void seria_data_members(seria::ISeria &s) override; |
nothing calls this directly
no outgoing calls
no test coverage detected