diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-06-06 15:45:21 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-06-12 19:05:51 -0400 |
commit | 72c3f36ca44a4be4d237095fd14e1ff862af5864 (patch) | |
tree | cd320e7996cf1478686679fc3e87fc4a9eee3a1d /src/simplewallet/simplewallet.cpp | |
parent | builds, but doesn't link. other than that, electrum-style recovery implement... (diff) | |
download | monero-72c3f36ca44a4be4d237095fd14e1ff862af5864.tar.xz |
fixed some pointer- and loop-based derps
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 261c150e9..ef96d7b96 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -953,6 +953,8 @@ int main(int argc, char* argv[]) command_line::add_arg(desc_params, arg_daemon_port); command_line::add_arg(desc_params, arg_command); command_line::add_arg(desc_params, arg_log_level); + command_line::add_arg(desc_params, arg_recover ); + command_line::add_arg(desc_params, arg_electrum_seed ); tools::wallet_rpc_server::init_options(desc_params); po::positional_options_description positional_options; |