From 7230f7a12e6677c28e3b1b66cbc1f43a8f6577f2 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 16 Jun 2022 17:10:53 +0200 Subject: [PATCH] renamed alias member to proper name --- src/wallet/wallet_public_structs_defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet_public_structs_defs.h b/src/wallet/wallet_public_structs_defs.h index 7bdc76f7..bde9d9f4 100644 --- a/src/wallet/wallet_public_structs_defs.h +++ b/src/wallet/wallet_public_structs_defs.h @@ -97,7 +97,7 @@ namespace wallet_public uint32_t tx_blob_size; std::string payment_id; std::vector remote_addresses; //optional - std::vector recipients_aliases; //optional + std::vector remote_aliases; //optional, describe only if there only one remote address std::string comment; bool is_income; bool is_service; @@ -127,7 +127,7 @@ namespace wallet_public KV_SERIALIZE(tx_blob_size) KV_SERIALIZE_BLOB_AS_HEX_STRING(payment_id) KV_SERIALIZE(remote_addresses) - KV_SERIALIZE(recipients_aliases) + KV_SERIALIZE(remote_aliases) KV_SERIALIZE(comment) KV_SERIALIZE(is_income) KV_SERIALIZE(timestamp)