diff options
author | Howard Chu <hyc@symas.com> | 2017-04-02 23:09:36 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2017-04-11 01:22:44 +0100 |
commit | 110b683152e4930247c88d426799d53943f19e72 (patch) | |
tree | 8d5eec97f1ccff6c33267f4cc1273ad342cd871c /src/wallet/wallet2.cpp | |
parent | Merge pull request #1956 (diff) | |
download | monero-110b683152e4930247c88d426799d53943f19e72.tar.xz |
Resolve #92 add ability to create wallets thru RPC
Reviewed and squashed. Open/Create is only allowed if no walletfile
was specified at startup.
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 941ee8afb..0e62d8c11 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -498,6 +498,12 @@ std::pair<std::unique_ptr<wallet2>, password_container> wallet2::make_new(const return {make_basic(vm, opts), std::move(*pwd)}; } +std::unique_ptr<wallet2> wallet2::make_dummy(const boost::program_options::variables_map& vm) +{ + const options opts{}; + return make_basic(vm, opts); +} + //---------------------------------------------------------------------------------------------------- bool wallet2::init(std::string daemon_address, boost::optional<epee::net_utils::http::login> daemon_login, uint64_t upper_transaction_size_limit) { |