diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-16 13:17:11 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-01 16:03:20 +0000 |
commit | f82bc29ec2f29ebd6c08c744bcd434ce4f595b49 (patch) | |
tree | 2cf22fd9e9167a1c1674af0e163ac9bfef074175 /src | |
parent | wallet_rpc_server: set confirmations to 0 for pending/pool txes (diff) | |
download | monero-f82bc29ec2f29ebd6c08c744bcd434ce4f595b49.tar.xz |
wallet_rpc_server: always fill out subaddr_indices in get_transfers
It was not filled out for in and pool types
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 5c95d94bb..a9bb63e2b 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -302,6 +302,7 @@ namespace tools entry.note = m_wallet->get_tx_note(pd.m_tx_hash); entry.type = pd.m_coinbase ? "block" : "in"; entry.subaddr_index = pd.m_subaddr_index; + entry.subaddr_indices.push_back(pd.m_subaddr_index); entry.address = m_wallet->get_subaddress_as_str(pd.m_subaddr_index); set_confirmations(entry, m_wallet->get_blockchain_current_height(), m_wallet->get_last_block_reward()); } @@ -373,6 +374,7 @@ namespace tools entry.double_spend_seen = ppd.m_double_spend_seen; entry.type = "pool"; entry.subaddr_index = pd.m_subaddr_index; + entry.subaddr_indices.push_back(pd.m_subaddr_index); entry.address = m_wallet->get_subaddress_as_str(pd.m_subaddr_index); set_confirmations(entry, m_wallet->get_blockchain_current_height(), m_wallet->get_last_block_reward()); } |