diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-01-13 13:22:13 -0500 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-01-13 13:22:13 -0500 |
commit | 5738e07fba5705afb582362c3da105df94ef7d78 (patch) | |
tree | e16c1876482e7128d774e650682032bdb55501cb /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #1544 (diff) | |
parent | wallet cli: print originating block heights of mixin keys when making transfer (diff) | |
download | monero-5738e07fba5705afb582362c3da105df94ef7d78.tar.xz |
Merge pull request #1492
f1dde1a4 wallet cli: print originating block heights of mixin keys when making transfer (kenshi84)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 6ca01ed2c..558031f52 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -300,6 +300,8 @@ namespace cryptonote outkey.key = epee::string_tools::pod_to_hex(i.key); outkey.mask = epee::string_tools::pod_to_hex(i.mask); outkey.unlocked = i.unlocked; + outkey.height = i.height; + outkey.txid = epee::string_tools::pod_to_hex(i.txid); } res.status = CORE_RPC_STATUS_OK; |