keep old usage of per_kb_fee functional

This commit is contained in:
j-berman
2022-02-21 20:12:25 -05:00
committed by Lee *!* Clagett
parent f027c15479
commit 04c6d553c6
3 changed files with 9 additions and 8 deletions

View File

@@ -155,11 +155,12 @@ namespace rpc
struct get_unspent_outs_response
{
get_unspent_outs_response() = delete;
std::uint64_t per_byte_fee;
std::uint64_t base_fee; // either per_byte_fee or per_kb_fee
std::uint64_t fee_mask;
safe_uint64 amount;
std::vector<std::pair<db::output, std::vector<crypto::key_image>>> outputs;
crypto::secret_key user_key;
bool use_per_byte_fee;
};
void write_bytes(wire::json_writer&, const get_unspent_outs_response&);