| 51 | void api::ErrorHash::seria_data_members(seria::ISeria &s) { seria_kv("hash", hash, s); } |
| 52 | |
| 53 | api::cnd::CheckSendproof::Error::Error(int c, const std::string &msg, const Hash &transaction_hash) |
| 54 | : json_rpc::Error(c, msg + " transaction_hash=" + common::pod_to_hex(transaction_hash)) |
| 55 | , transaction_hash(transaction_hash) {} |
| 56 | |
| 57 | void api::cnd::CheckSendproof::Error::seria_data_members(seria::ISeria &s) { |
| 58 | seria_kv("transaction_hash", transaction_hash, s); |
nothing calls this directly
no test coverage detected