diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-23 14:31:54 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-01-18 16:58:47 +0000 |
| commit | b7441c4a328f32cdf33f8e07816bcb080483d4cb (patch) | |
| tree | aa80fcf3a4d57887dab78c2efa5820e6885fb369 /src/wallet/wallet_rpc_server.cpp | |
| parent | a9b1c04acfaa21e7b0adfea9216dffae002ac7e3 (diff) | |
| download | monzero-core-b7441c4a328f32cdf33f8e07816bcb080483d4cb.tar.gz monzero-core-b7441c4a328f32cdf33f8e07816bcb080483d4cb.tar.xz monzero-core-b7441c4a328f32cdf33f8e07816bcb080483d4cb.zip | |
core, wallet: remember original text version of destination address
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
| -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 dd65ee7fe..5dc6ac0e8 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -644,9 +644,11 @@ namespace tools return false; } + de.original = it->address; de.addr = info.address; de.is_subaddress = info.is_subaddress; de.amount = it->amount; + de.is_integrated = info.has_payment_id; dsts.push_back(de); if (info.has_payment_id) |
