diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-07-30 09:37:22 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:30:03 +0100 |
commit | 1303cda646848450986b73ef66449cc4eea2cc0c (patch) | |
tree | 078602d8a69409bc3d511ed3d295ec9d41dfcf2d /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | rct: do not serialize senderPk - it is not used anymore (diff) | |
download | monero-1303cda646848450986b73ef66449cc4eea2cc0c.tar.xz |
wallet: always use new algorithm for RPC transfers
This ensures we get rct transactions when appropriate
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index ea92a028e..4df259242 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -151,7 +151,6 @@ namespace wallet_rpc uint64_t mixin; uint64_t unlock_time; std::string payment_id; - bool new_algorithm; bool get_tx_keys; bool trusted_daemon; @@ -161,7 +160,6 @@ namespace wallet_rpc KV_SERIALIZE(mixin) KV_SERIALIZE(unlock_time) KV_SERIALIZE(payment_id) - KV_SERIALIZE(new_algorithm) KV_SERIALIZE(get_tx_keys) KV_SERIALIZE(trusted_daemon) END_KV_SERIALIZE_MAP() |