| 59 | }; |
| 60 | |
| 61 | api::walletd::CreateTransaction::ErrorTransactionTooBig::ErrorTransactionTooBig( |
| 62 | const std::string &msg, Amount a, Amount a_zero) |
| 63 | : json_rpc::Error(TRANSACTION_DOES_NOT_FIT_IN_BLOCK, msg), max_amount(a), max_min_anonymity_amount(a_zero) {} |
| 64 | |
| 65 | void api::walletd::CreateTransaction::ErrorTransactionTooBig::seria_data_members(seria::ISeria &s) { |
| 66 | seria_kv("max_amount", max_amount, s); |
nothing calls this directly
no outgoing calls
no test coverage detected