Merge pull request #7422

d46d90c return output key for incoming transfers (benevanoff)
This commit is contained in:
luigi1111 2021-03-20 01:57:44 -04:00
commit 5b8d714a4b
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
2 changed files with 3 additions and 0 deletions

View file

@ -1010,6 +1010,7 @@ namespace wallet_rpc
std::string tx_hash;
cryptonote::subaddress_index subaddr_index;
std::string key_image;
std::string pubkey; // owned output public key found
uint64_t block_height;
bool frozen;
bool unlocked;
@ -1021,6 +1022,7 @@ namespace wallet_rpc
KV_SERIALIZE(tx_hash)
KV_SERIALIZE(subaddr_index)
KV_SERIALIZE(key_image)
KV_SERIALIZE(pubkey);
KV_SERIALIZE(block_height)
KV_SERIALIZE(frozen)
KV_SERIALIZE(unlocked)